結果

問題 No.1352 Three Coins
ユーザー rlangevinrlangevin
提出日時 2024-04-04 00:18:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 883 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 352,508 KB
最終ジャッジ日時 2024-10-01 00:12:34
合計ジャッジ時間 23,082 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 326 ms
351,300 KB
testcase_01 AC 580 ms
351,188 KB
testcase_02 AC 837 ms
351,372 KB
testcase_03 AC 851 ms
351,488 KB
testcase_04 AC 805 ms
351,036 KB
testcase_05 AC 761 ms
351,708 KB
testcase_06 AC 713 ms
350,664 KB
testcase_07 AC 410 ms
351,252 KB
testcase_08 AC 749 ms
352,128 KB
testcase_09 AC 703 ms
351,704 KB
testcase_10 AC 742 ms
351,260 KB
testcase_11 AC 742 ms
351,108 KB
testcase_12 AC 301 ms
351,968 KB
testcase_13 AC 864 ms
352,508 KB
testcase_14 AC 883 ms
350,788 KB
testcase_15 AC 794 ms
350,924 KB
testcase_16 AC 435 ms
351,368 KB
testcase_17 AC 751 ms
351,220 KB
testcase_18 AC 742 ms
351,580 KB
testcase_19 AC 447 ms
350,768 KB
testcase_20 AC 427 ms
350,996 KB
testcase_21 AC 756 ms
350,156 KB
testcase_22 AC 364 ms
350,656 KB
testcase_23 AC 269 ms
350,940 KB
testcase_24 AC 608 ms
351,268 KB
testcase_25 AC 338 ms
352,244 KB
testcase_26 AC 253 ms
350,856 KB
testcase_27 AC 613 ms
350,796 KB
testcase_28 AC 812 ms
350,900 KB
testcase_29 AC 811 ms
351,508 KB
testcase_30 AC 621 ms
350,912 KB
testcase_31 AC 653 ms
351,044 KB
testcase_32 AC 517 ms
350,928 KB
testcase_33 AC 160 ms
350,844 KB
testcase_34 AC 335 ms
351,968 KB
testcase_35 AC 595 ms
351,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, C = map(int, input().split())
M = 5000
M2 = M * M
dp = [0] * M2
a = 0
while a < M2:
    b = 0
    if dp[a]:
        break
    while a + b < M2:
        c = 0
        if dp[a + b]:
            break
        while a + b + c < M2:
            if dp[a + b + c]:
                break
            else:
                dp[a + b + c] = 1
                c += C
        b += B
    a += A
    
if 0 in dp[M2//2:]:
    print("INF")
else:
    print(dp.count(0))
0