結果

問題 No.2558 中国剰余定理
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-06 17:16:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 100 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 59,460 KB
最終ジャッジ日時 2024-09-06 17:16:49
合計ジャッジ時間 3,269 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,068 KB
testcase_01 AC 37 ms
52,372 KB
testcase_02 AC 46 ms
58,784 KB
testcase_03 AC 39 ms
52,216 KB
testcase_04 AC 63 ms
58,812 KB
testcase_05 AC 38 ms
52,704 KB
testcase_06 AC 37 ms
52,560 KB
testcase_07 AC 37 ms
53,084 KB
testcase_08 AC 45 ms
58,644 KB
testcase_09 AC 41 ms
58,424 KB
testcase_10 AC 43 ms
58,668 KB
testcase_11 AC 44 ms
58,720 KB
testcase_12 AC 41 ms
58,380 KB
testcase_13 AC 40 ms
59,060 KB
testcase_14 AC 40 ms
57,804 KB
testcase_15 AC 41 ms
58,528 KB
testcase_16 AC 47 ms
57,856 KB
testcase_17 AC 40 ms
58,308 KB
testcase_18 AC 46 ms
58,908 KB
testcase_19 AC 48 ms
57,648 KB
testcase_20 AC 42 ms
58,080 KB
testcase_21 AC 45 ms
58,644 KB
testcase_22 AC 39 ms
57,164 KB
testcase_23 AC 40 ms
58,096 KB
testcase_24 AC 47 ms
58,904 KB
testcase_25 AC 47 ms
59,024 KB
testcase_26 AC 40 ms
57,924 KB
testcase_27 AC 40 ms
58,056 KB
testcase_28 AC 44 ms
58,192 KB
testcase_29 AC 41 ms
57,644 KB
testcase_30 AC 42 ms
59,460 KB
testcase_31 AC 42 ms
59,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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