結果

問題 No.1231 Make a Multiple of Ten
ユーザー _matumo__matumo_
提出日時 2020-12-14 12:11:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,327 ms / 2,000 ms
コード長 162 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,640 KB
最終ジャッジ日時 2024-09-20 00:39:48
合計ジャッジ時間 9,249 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 630 ms
17,912 KB
testcase_05 AC 543 ms
16,904 KB
testcase_06 AC 232 ms
13,236 KB
testcase_07 AC 642 ms
18,208 KB
testcase_08 AC 388 ms
14,488 KB
testcase_09 AC 151 ms
12,160 KB
testcase_10 AC 575 ms
17,336 KB
testcase_11 AC 688 ms
18,784 KB
testcase_12 AC 1,251 ms
25,776 KB
testcase_13 AC 1,311 ms
26,508 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 1,327 ms
26,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
P=[int(s[-1]) 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