結果

問題 No.1231 Make a Multiple of Ten
ユーザー _matumo__matumo_
提出日時 2020-12-14 12:16:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,293 ms / 2,000 ms
コード長 159 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 26,512 KB
最終ジャッジ日時 2024-09-20 00:39:57
合計ジャッジ時間 8,873 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 594 ms
17,784 KB
testcase_05 AC 514 ms
16,888 KB
testcase_06 AC 222 ms
13,112 KB
testcase_07 AC 620 ms
18,068 KB
testcase_08 AC 367 ms
14,364 KB
testcase_09 AC 143 ms
12,032 KB
testcase_10 AC 558 ms
17,336 KB
testcase_11 AC 654 ms
18,784 KB
testcase_12 AC 1,177 ms
25,672 KB
testcase_13 AC 1,293 ms
26,512 KB
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 1,259 ms
26,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
P=[int(s)%10 for s in input().split()]
v=[1]+[0]*9
for d in P:
    w=v[-d:]+v[:-d]
    v=[[a,max(a,b+1)][b>0] for a,b in zip(v,w)]
print(v[0]-1)
0