結果

問題 No.634 硬貨の枚数1
ユーザー Coki628Coki628
提出日時 2020-09-03 18:23:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 927 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,620 KB
実行使用メモリ 456,868 KB
最終ジャッジ日時 2024-11-23 20:24:44
合計ジャッジ時間 146,373 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,804 KB
testcase_01 AC 40 ms
163,964 KB
testcase_02 AC 88 ms
82,924 KB
testcase_03 AC 61 ms
444,756 KB
testcase_04 AC 58 ms
76,092 KB
testcase_05 AC 49 ms
253,976 KB
testcase_06 AC 68 ms
78,836 KB
testcase_07 AC 60 ms
284,392 KB
testcase_08 AC 53 ms
71,252 KB
testcase_09 AC 70 ms
263,044 KB
testcase_10 AC 62 ms
78,068 KB
testcase_11 AC 55 ms
416,668 KB
testcase_12 AC 60 ms
77,768 KB
testcase_13 AC 50 ms
454,180 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 69 ms
79,216 KB
testcase_25 AC 49 ms
316,776 KB
testcase_26 AC 60 ms
78,536 KB
testcase_27 AC 53 ms
73,456 KB
testcase_28 AC 65 ms
80,624 KB
testcase_29 AC 66 ms
183,136 KB
testcase_30 AC 61 ms
78,544 KB
testcase_31 AC 64 ms
440,092 KB
testcase_32 AC 49 ms
71,440 KB
testcase_33 AC 53 ms
309,876 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 42 ms
66,208 KB
testcase_45 AC 738 ms
186,832 KB
testcase_46 TLE -
testcase_47 TLE -
testcase_48 AC 38 ms
60,184 KB
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 AC 36 ms
60,212 KB
testcase_53 AC 36 ms
456,868 KB
testcase_54 AC 37 ms
60,020 KB
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 TLE -
testcase_73 TLE -
testcase_74 TLE -
testcase_75 TLE -
testcase_76 AC 91 ms
83,024 KB
testcase_77 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def input(): return sys.stdin.readline().strip()
def list2d(a, b, c): return [[c] * b for i in range(a)]
def list3d(a, b, c, d): return [[[d] * c for j in range(b)] for i in range(a)]
def list4d(a, b, c, d, e): return [[[[e] * d for j in range(c)] for j in range(b)] for i in range(a)]
def ceil(x, y=1): return int(-(-x // y))
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(N=None): return list(MAP()) if N is None else [INT() for i in range(N)]
def Yes(): print('Yes')
def No(): print('No')
def YES(): print('YES')
def NO(): print('NO')
sys.setrecursionlimit(10**9)
INF = 10**19
MOD = 10**9 + 7
EPS = 10**-10

N = INT()

A = [0]
for i in range(1, N+1):
    A.append(A[-1]+i)
    if A[-1] > N:
        break

M = len(A)
dp = [INF] * (N+1)
dp[0] = 0
for i in range(N):
    for a in A[1:]:
        if i+a <= N:
            dp[i+a] = min(dp[i+a], dp[i] + 1)
ans = dp[N]
print(ans)
0