結果

問題 No.1352 Three Coins
ユーザー titiatitia
提出日時 2021-01-17 13:44:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 63,360 KB
最終ジャッジ日時 2024-06-02 12:06:55
合計ジャッジ時間 6,348 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
60,160 KB
testcase_01 AC 156 ms
61,184 KB
testcase_02 AC 141 ms
61,312 KB
testcase_03 AC 132 ms
60,288 KB
testcase_04 AC 147 ms
60,928 KB
testcase_05 AC 148 ms
61,056 KB
testcase_06 AC 155 ms
63,232 KB
testcase_07 AC 143 ms
61,440 KB
testcase_08 AC 270 ms
63,232 KB
testcase_09 AC 148 ms
61,056 KB
testcase_10 AC 152 ms
61,568 KB
testcase_11 AC 143 ms
62,080 KB
testcase_12 AC 135 ms
60,800 KB
testcase_13 AC 156 ms
60,800 KB
testcase_14 AC 150 ms
61,824 KB
testcase_15 AC 146 ms
61,824 KB
testcase_16 AC 143 ms
60,544 KB
testcase_17 AC 142 ms
60,672 KB
testcase_18 AC 146 ms
61,568 KB
testcase_19 AC 142 ms
61,568 KB
testcase_20 AC 129 ms
60,928 KB
testcase_21 AC 156 ms
63,360 KB
testcase_22 AC 134 ms
60,544 KB
testcase_23 AC 142 ms
60,928 KB
testcase_24 AC 129 ms
61,056 KB
testcase_25 AC 100 ms
60,416 KB
testcase_26 AC 132 ms
60,672 KB
testcase_27 AC 99 ms
60,544 KB
testcase_28 AC 147 ms
61,568 KB
testcase_29 AC 151 ms
60,544 KB
testcase_30 AC 145 ms
61,056 KB
testcase_31 AC 140 ms
60,672 KB
testcase_32 AC 155 ms
62,208 KB
testcase_33 AC 145 ms
60,544 KB
testcase_34 AC 148 ms
60,800 KB
testcase_35 AC 122 ms
60,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

X=sorted(map(int,input().split()))
A,B,C=X

MIN=[1<<31]*A

for i in range(5000):
    for j in range(5000):
        MIN[(B*i+C*j)%A]=min(MIN[(B*i+C*j)%A],B*i+C*j)

ANS=0
for i in range(A):
    if MIN[i]==1<<31:
        print("INF")
        sys.exit()
    ANS+=MIN[i]//A

print(ANS)
0