結果
問題 | No.921 ずんだアロー |
ユーザー | kbys |
提出日時 | 2020-06-23 09:09:59 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,019 bytes |
コンパイル時間 | 175 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 170,208 KB |
最終ジャッジ日時 | 2024-07-03 19:09:11 |
合計ジャッジ時間 | 4,515 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
57,216 KB |
testcase_01 | AC | 40 ms
52,480 KB |
testcase_02 | AC | 40 ms
52,224 KB |
testcase_03 | WA | - |
testcase_04 | AC | 40 ms
52,224 KB |
testcase_05 | AC | 39 ms
51,968 KB |
testcase_06 | AC | 45 ms
58,624 KB |
testcase_07 | AC | 42 ms
57,472 KB |
testcase_08 | AC | 39 ms
52,480 KB |
testcase_09 | AC | 42 ms
57,344 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
import sys input=sys.stdin.readline def main(args): N = int(input()) A = list(map(int,input().split())) katamari = [] kosu = 1#ある数字のかたまりに含まれる,その数字の個数 prev = None#直前の値 for a in A: if a == prev: kosu += 1 else: katamari.append(kosu) prev = a kosu = 1 katamari.append(kosu) katamari = katamari[1:] #print("katamari",katamari) if len(katamari) > 1: dp = [katamari[0],katamari[1]] + [0]*(len(katamari)-2)#その位置を採用したときの最大値 #highest = [katamari[0],max(katamari[0],katamari[1])] for i in range(2,len(katamari)): dp[i] = max(dp[:i-1]) + katamari[i] #highest.append(max(dp[i],highest[i-2])) #print("dp",dp) #print('highest',highest) print(dp[-1]) else: print(katamari[0]) if __name__ == '__main__': main(sys.argv[1:])