結果
問題 | No.2030 Googol Strings |
ユーザー | hir355 |
提出日時 | 2022-08-05 22:10:28 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 445 bytes |
コンパイル時間 | 205 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 229,820 KB |
最終ジャッジ日時 | 2024-09-15 19:07:04 |
合計ジャッジ時間 | 4,456 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 211 ms
77,696 KB |
testcase_01 | AC | 107 ms
80,640 KB |
testcase_02 | AC | 161 ms
136,760 KB |
testcase_03 | AC | 39 ms
52,224 KB |
testcase_04 | AC | 206 ms
77,952 KB |
testcase_05 | AC | 105 ms
78,720 KB |
testcase_06 | AC | 293 ms
229,820 KB |
testcase_07 | AC | 247 ms
195,208 KB |
testcase_08 | AC | 248 ms
194,952 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 200 ms
145,572 KB |
ソースコード
t = int(input()) for _ in range(t): x = list(input()) x += x y = list(input()) y += y if len(x) >= len(y): for i in range(len(y), len(x)): y.append(y[i % len(y)]) if x >= y: print('X') else: print('Y') else: for i in range(len(x), len(y)): x.append(x[i % len(x)]) if x > y: print('X') else: print('Y')