結果

問題 No.2558 中国剰余定理
ユーザー liny_tailliny_tail
提出日時 2024-08-13 17:15:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 156 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-08-13 17:16:08
合計ジャッジ時間 10,490 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
10,624 KB
testcase_01 AC 23 ms
10,624 KB
testcase_02 AC 580 ms
10,496 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 TLE -
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 24 ms
10,496 KB
testcase_08 AC 505 ms
10,624 KB
testcase_09 AC 35 ms
10,624 KB
testcase_10 AC 220 ms
10,496 KB
testcase_11 AC 326 ms
10,496 KB
testcase_12 AC 78 ms
10,624 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 30 ms
10,496 KB
testcase_15 AC 98 ms
10,496 KB
testcase_16 AC 571 ms
10,496 KB
testcase_17 AC 31 ms
10,496 KB
testcase_18 AC 638 ms
10,496 KB
testcase_19 AC 862 ms
10,496 KB
testcase_20 AC 155 ms
10,624 KB
testcase_21 AC 393 ms
10,624 KB
testcase_22 AC 27 ms
10,624 KB
testcase_23 AC 48 ms
10,496 KB
testcase_24 AC 719 ms
10,624 KB
testcase_25 AC 705 ms
10,496 KB
testcase_26 AC 51 ms
10,624 KB
testcase_27 AC 55 ms
10,624 KB
testcase_28 AC 427 ms
10,496 KB
testcase_29 AC 33 ms
10,496 KB
testcase_30 AC 201 ms
10,496 KB
testcase_31 AC 85 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, a, b = map(int, input().split(' '))

x = 0
while True:
  if x % A == a and x % B == b:
    break
  x += 1
  if x > A*B:
    x = 0
    break

print(x)
0