結果
問題 | No.2030 Googol Strings |
ユーザー | Shirotsume |
提出日時 | 2022-07-06 00:36:56 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 315 bytes |
コンパイル時間 | 238 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 120,300 KB |
最終ジャッジ日時 | 2024-05-09 21:09:55 |
合計ジャッジ時間 | 5,149 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 183 ms
18,868 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | AC | 24 ms
10,624 KB |
testcase_04 | AC | 122 ms
11,756 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 26 ms
10,752 KB |
testcase_10 | AC | 26 ms
10,880 KB |
testcase_11 | AC | 26 ms
10,752 KB |
testcase_12 | AC | 90 ms
10,624 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()