結果

問題 No.1352 Three Coins
ユーザー rlangevinrlangevin
提出日時 2024-04-04 00:17:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 457 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 350,976 KB
最終ジャッジ日時 2024-10-01 00:12:06
合計ジャッジ時間 24,048 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 397 ms
350,848 KB
testcase_01 AC 630 ms
350,336 KB
testcase_02 AC 854 ms
350,848 KB
testcase_03 AC 890 ms
350,720 KB
testcase_04 AC 821 ms
350,208 KB
testcase_05 AC 799 ms
350,848 KB
testcase_06 AC 710 ms
350,208 KB
testcase_07 WA -
testcase_08 AC 761 ms
350,592 KB
testcase_09 AC 724 ms
350,848 KB
testcase_10 AC 758 ms
350,720 KB
testcase_11 AC 797 ms
350,592 KB
testcase_12 WA -
testcase_13 AC 871 ms
350,464 KB
testcase_14 AC 854 ms
350,336 KB
testcase_15 AC 798 ms
350,532 KB
testcase_16 WA -
testcase_17 AC 735 ms
350,592 KB
testcase_18 AC 744 ms
350,592 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 736 ms
350,208 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 617 ms
350,592 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 637 ms
350,464 KB
testcase_28 AC 834 ms
350,720 KB
testcase_29 AC 796 ms
350,720 KB
testcase_30 AC 633 ms
350,208 KB
testcase_31 AC 660 ms
350,464 KB
testcase_32 AC 529 ms
350,592 KB
testcase_33 WA -
testcase_34 AC 337 ms
350,720 KB
testcase_35 AC 609 ms
350,592 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