#12755: AC code


bert30702 (bert30702)

學校 : 臺北市立成功高級中學
編號 : 62008
來源 : [223.136.190.31]
最後登入時間 :
2019-11-16 18:56:07
d306. 10193 - All You Need Is Love -- UVa10193 | From: [203.64.138.91] | 發表日期 : 2017-09-26 12:52

#include <bits/stdc++.h>
int main(){
    int t = 0, k; scanf("%d", &k);
    while(k--){
        std::string a, b; std::cin >> a >> b;
        int x = 0, y = 0;
        for(auto it: a) x = x * 2 + it - '0';
        for(auto it: b) y = y * 2 + it - '0';
        if(std::__gcd(x, y) != 1)
        printf("Pair #%d: All you need is love!\n", ++t);
        else printf("Pair #%d: Love is not all you need!\n", ++t);
    }
}

 
ZeroJudge Forum