結果
問題 | No.1352 Three Coins |
ユーザー | GER_chen |
提出日時 | 2021-01-17 13:15:18 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 361 bytes |
コンパイル時間 | 201 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-11-29 20:03:59 |
合計ジャッジ時間 | 2,132 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
10,752 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 27 ms
10,752 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 27 ms
10,752 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 25 ms
10,624 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 26 ms
10,752 KB |
testcase_20 | AC | 26 ms
10,624 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 27 ms
10,624 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 26 ms
10,624 KB |
testcase_27 | WA | - |
testcase_28 | AC | 26 ms
10,624 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 26 ms
10,624 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 25 ms
10,752 KB |
testcase_35 | AC | 26 ms
10,752 KB |
ソースコード
#yuki-1352 from math import gcd A, B, C = sorted(map(int, input().split())) b = A//gcd(A, B) c = A//gcd(A, C) if gcd(b, c) > 1: print('INF') exit() #mod Aで頑張る mex = [float('inf')]*A mex[0] = 0 for i in range(b): for j in range(c): R = i*B+j*C r = R%A mex[r] = min(R, mex[r]) ans = [m//A for m in mex] print(sum(ans))