結果

問題 No.2558 中国剰余定理
ユーザー zezerozezero
提出日時 2023-12-02 14:35:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 96 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-26 16:55:56
合計ジャッジ時間 12,580 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 WA -
testcase_02 AC 429 ms
10,496 KB
testcase_03 WA -
testcase_04 AC 1,561 ms
10,496 KB
testcase_05 AC 28 ms
10,496 KB
testcase_06 AC 28 ms
10,496 KB
testcase_07 WA -
testcase_08 AC 384 ms
10,624 KB
testcase_09 AC 41 ms
10,496 KB
testcase_10 AC 242 ms
10,496 KB
testcase_11 AC 371 ms
10,496 KB
testcase_12 AC 344 ms
10,624 KB
testcase_13 AC 44 ms
10,496 KB
testcase_14 AC 76 ms
10,496 KB
testcase_15 AC 400 ms
10,624 KB
testcase_16 AC 1,065 ms
10,496 KB
testcase_17 AC 210 ms
10,624 KB
testcase_18 AC 581 ms
10,496 KB
testcase_19 AC 712 ms
10,496 KB
testcase_20 AC 147 ms
10,624 KB
testcase_21 AC 571 ms
10,496 KB
testcase_22 AC 33 ms
10,496 KB
testcase_23 AC 54 ms
10,496 KB
testcase_24 AC 726 ms
10,496 KB
testcase_25 AC 733 ms
10,496 KB
testcase_26 AC 113 ms
10,496 KB
testcase_27 AC 69 ms
10,624 KB
testcase_28 AC 532 ms
10,496 KB
testcase_29 AC 116 ms
10,624 KB
testcase_30 AC 300 ms
10,496 KB
testcase_31 AC 71 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,a,b = map(int,input().split())
for i in range(1,A*B):
	if i%A == a and i%B == b:
		print(i)
0