結果

問題 No.1268 Fruit Rush 2
ユーザー hanyuhanyu
提出日時 2020-05-31 15:32:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 327 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 34,844 KB
最終ジャッジ日時 2024-06-22 07:42:23
合計ジャッジ時間 6,047 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
12,288 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 AC 94 ms
12,160 KB
testcase_03 AC 97 ms
12,288 KB
testcase_04 AC 95 ms
12,160 KB
testcase_05 AC 95 ms
12,288 KB
testcase_06 AC 87 ms
12,288 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 97 ms
12,416 KB
testcase_10 AC 94 ms
12,288 KB
testcase_11 AC 92 ms
12,416 KB
testcase_12 RE -
testcase_13 AC 93 ms
12,288 KB
testcase_14 AC 88 ms
12,288 KB
testcase_15 RE -
testcase_16 AC 215 ms
26,848 KB
testcase_17 AC 198 ms
24,820 KB
testcase_18 AC 206 ms
25,372 KB
testcase_19 AC 199 ms
24,464 KB
testcase_20 AC 198 ms
24,340 KB
testcase_21 AC 208 ms
23,948 KB
testcase_22 AC 212 ms
26,208 KB
testcase_23 AC 214 ms
26,224 KB
testcase_24 AC 211 ms
24,456 KB
testcase_25 AC 197 ms
24,840 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 272 ms
30,412 KB
testcase_32 AC 273 ms
30,284 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

x = [0] * 200000

for i in range(n):
    x[a[i] - 1] = x[a[i] - 1] + 1

for i in range(199998):
    j = 199997 - i
    if x[j] > 0:
        x[j] += x[j + 2]
    
ans = n
for i in range(200000):
    if i > 0 and x[i - 1] > 0 and x[i] > 0:
        ans += x[i]
    
print(ans)
0