ACM-ICPC 2018 焦作赛区网络预赛练习

3 篇文章 0 订阅

ACM-ICPC 2018 焦作赛区网络预赛


A. Magic Mirror

在这里插入图片描述
签到水题。

#include <bits/stdc++.h>
using namespace std;
#define ll long long 
#define INF 0x3f3f3f3f
#define fuck(x) cout<<x<<endl
const int N = 2e5 + 10;     
const ll mod = 1e9 + 7;

string a, b;

int main(){
    int t;
    for(cin >> t; t; t--){
        cin >> a;
        for(int i = 0; i < a.size(); i++){
            if(a[i] >= 'A' && a[i] <= 'Z'){
                a[i] += ('a' - 'A');
            }
        }
        if(a == "jessie"){
            cout << "Good guy!" << "\n";
        }else{
            cout << "Dare you say that again?" << "\n";
        }
    }
    return 0;
}

I. Save the Room

在这里插入图片描述
只有当长宽高都是奇数时才不可能。

#include <bits/stdc++.h>
using namespace std;
#define ll long long 
#define INF 0x3f3f3f3f
#define fuck(x) cout<<x<<endl
const int N = 2e5 + 10;     
const ll mod = 1e9 + 7;


int main(){
    int a, b, c;
    while(cin >> a >> b >> c){
        if(a&1 && b&1 && c&1){
            cout << "No\n";
        }else{
            cout << "Yes\n";
        }
    }
    return 0;
}

G. Give Candies(费马小定理 + 快速幂)在这里插入图片描述

L. Poor God Water

士大夫

K. Transport Ship

在这里插入图片描述

B. Mathematical Curse

在这里插入图片描述

H. String and Times

在这里插入图片描述

J. Participate in E-sports

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值