結果

問題 No.2558 中国剰余定理
ユーザー ゼットゼット
提出日時 2023-12-20 23:32:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 103 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 59,168 KB
最終ジャッジ日時 2024-09-27 10:15:38
合計ジャッジ時間 2,577 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,412 KB
testcase_01 AC 36 ms
52,624 KB
testcase_02 AC 46 ms
57,896 KB
testcase_03 AC 36 ms
52,484 KB
testcase_04 AC 61 ms
58,408 KB
testcase_05 AC 37 ms
53,600 KB
testcase_06 AC 37 ms
52,416 KB
testcase_07 AC 37 ms
52,416 KB
testcase_08 AC 45 ms
58,860 KB
testcase_09 AC 40 ms
58,236 KB
testcase_10 AC 42 ms
58,920 KB
testcase_11 AC 44 ms
58,044 KB
testcase_12 AC 42 ms
58,684 KB
testcase_13 AC 44 ms
57,920 KB
testcase_14 AC 39 ms
57,784 KB
testcase_15 AC 40 ms
58,124 KB
testcase_16 AC 46 ms
57,988 KB
testcase_17 AC 39 ms
58,204 KB
testcase_18 AC 47 ms
58,792 KB
testcase_19 AC 49 ms
58,236 KB
testcase_20 AC 42 ms
58,172 KB
testcase_21 AC 44 ms
58,140 KB
testcase_22 AC 40 ms
58,208 KB
testcase_23 AC 40 ms
59,096 KB
testcase_24 AC 46 ms
58,424 KB
testcase_25 AC 47 ms
58,484 KB
testcase_26 AC 40 ms
57,872 KB
testcase_27 AC 41 ms
58,784 KB
testcase_28 AC 45 ms
58,436 KB
testcase_29 AC 40 ms
57,240 KB
testcase_30 AC 43 ms
59,168 KB
testcase_31 AC 41 ms
58,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X,Y,a,b=map(int,input().split())
for z in range(10**9):
  if z%X==a and z%Y==b:
    print(z)
    exit()
0