結果
問題 | No.2030 Googol Strings |
ユーザー | Shirotsume |
提出日時 | 2022-07-06 00:36:06 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 315 bytes |
コンパイル時間 | 287 ms |
コンパイル使用メモリ | 81,968 KB |
実行使用メモリ | 276,928 KB |
最終ジャッジ日時 | 2024-05-09 21:10:06 |
合計ジャッジ時間 | 6,581 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 637 ms
189,348 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | AC | 37 ms
52,224 KB |
testcase_04 | AC | 334 ms
107,996 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 46 ms
60,928 KB |
testcase_10 | AC | 46 ms
61,312 KB |
testcase_11 | AC | 49 ms
61,696 KB |
testcase_12 | AC | 124 ms
76,416 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
from math import gcd def solve(): x=input() y=input() n = len(x) m = len(y) if x + y == y + x: if n > m: print('X') else: print('Y') return lcm = n * m // gcd(n, m) x *= lcm y *= lcm if x > y: print('X') else: print('Y') for _ in range(int(input())): solve()