結果

問題 No.634 硬貨の枚数1
ユーザー Yukino DX.Yukino DX.
提出日時 2023-11-17 16:23:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,252 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-09-26 05:25:54
合計ジャッジ時間 30,334 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 44 ms
57,472 KB
testcase_03 AC 44 ms
58,112 KB
testcase_04 AC 49 ms
58,112 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 44 ms
57,216 KB
testcase_07 AC 44 ms
57,856 KB
testcase_08 AC 45 ms
58,112 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 44 ms
57,856 KB
testcase_11 AC 45 ms
57,728 KB
testcase_12 AC 43 ms
57,472 KB
testcase_13 AC 46 ms
58,112 KB
testcase_14 AC 58 ms
62,336 KB
testcase_15 AC 316 ms
75,392 KB
testcase_16 AC 87 ms
65,664 KB
testcase_17 AC 81 ms
65,152 KB
testcase_18 AC 68 ms
63,488 KB
testcase_19 AC 58 ms
61,824 KB
testcase_20 AC 61 ms
62,080 KB
testcase_21 AC 323 ms
75,392 KB
testcase_22 AC 97 ms
64,896 KB
testcase_23 AC 110 ms
68,864 KB
testcase_24 AC 45 ms
58,496 KB
testcase_25 AC 45 ms
57,856 KB
testcase_26 AC 48 ms
59,008 KB
testcase_27 AC 45 ms
57,728 KB
testcase_28 AC 45 ms
57,984 KB
testcase_29 AC 48 ms
59,264 KB
testcase_30 AC 47 ms
58,880 KB
testcase_31 AC 47 ms
59,136 KB
testcase_32 AC 48 ms
59,520 KB
testcase_33 AC 48 ms
58,880 KB
testcase_34 AC 57 ms
62,336 KB
testcase_35 AC 67 ms
63,360 KB
testcase_36 AC 101 ms
66,304 KB
testcase_37 AC 71 ms
63,488 KB
testcase_38 AC 63 ms
63,360 KB
testcase_39 AC 306 ms
75,392 KB
testcase_40 AC 182 ms
75,776 KB
testcase_41 AC 124 ms
68,992 KB
testcase_42 AC 99 ms
65,920 KB
testcase_43 AC 84 ms
66,048 KB
testcase_44 AC 39 ms
51,712 KB
testcase_45 AC 49 ms
59,648 KB
testcase_46 AC 56 ms
61,824 KB
testcase_47 AC 72 ms
63,360 KB
testcase_48 AC 40 ms
51,584 KB
testcase_49 AC 50 ms
59,904 KB
testcase_50 AC 131 ms
68,352 KB
testcase_51 AC 98 ms
71,168 KB
testcase_52 AC 39 ms
52,096 KB
testcase_53 AC 39 ms
51,712 KB
testcase_54 AC 39 ms
52,224 KB
testcase_55 AC 1,252 ms
75,520 KB
testcase_56 AC 1,202 ms
76,032 KB
testcase_57 AC 1,152 ms
75,776 KB
testcase_58 AC 1,227 ms
75,264 KB
testcase_59 AC 1,158 ms
75,520 KB
testcase_60 AC 1,219 ms
75,392 KB
testcase_61 AC 1,113 ms
75,136 KB
testcase_62 AC 1,114 ms
75,264 KB
testcase_63 AC 1,089 ms
75,392 KB
testcase_64 AC 1,087 ms
75,264 KB
testcase_65 AC 1,059 ms
75,264 KB
testcase_66 AC 1,077 ms
75,392 KB
testcase_67 AC 1,053 ms
75,392 KB
testcase_68 AC 1,052 ms
75,392 KB
testcase_69 AC 1,037 ms
75,264 KB
testcase_70 AC 1,023 ms
75,392 KB
testcase_71 AC 1,016 ms
75,136 KB
testcase_72 AC 1,002 ms
75,264 KB
testcase_73 AC 999 ms
75,392 KB
testcase_74 AC 1,064 ms
75,392 KB
testcase_75 AC 994 ms
75,392 KB
testcase_76 AC 50 ms
60,032 KB
testcase_77 AC 46 ms
58,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import takewhile, count

sys.setrecursionlimit(10**7)

n = int(input())
koukas = [
    k * (k + 1) // 2 for k in takewhile(lambda k: k * (k + 1) // 2 <= n, count(1))
]


def can(m, n):
    if m == 0 or n == 0:
        return m == n

    for kouka in koukas:
        if kouka > n:
            break
        if can(m - 1, n - kouka):
            return True

    return False


for m in count(1):
    if can(m, n):
        print(m)
        exit()
0