結果

問題 No.1268 Fruit Rush 2
ユーザー 👑 KazunKazun
提出日時 2020-10-23 22:24:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 198 bytes
コンパイル時間 551 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 140,800 KB
最終ジャッジ日時 2024-07-21 11:05:54
合計ジャッジ時間 7,097 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,216 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 38 ms
51,584 KB
testcase_05 AC 37 ms
51,200 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 37 ms
51,328 KB
testcase_08 AC 38 ms
51,200 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 37 ms
51,712 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 37 ms
51,840 KB
testcase_13 AC 37 ms
51,584 KB
testcase_14 AC 39 ms
51,712 KB
testcase_15 AC 39 ms
51,712 KB
testcase_16 AC 135 ms
121,472 KB
testcase_17 AC 106 ms
112,384 KB
testcase_18 AC 110 ms
113,664 KB
testcase_19 AC 108 ms
112,512 KB
testcase_20 AC 111 ms
113,744 KB
testcase_21 AC 109 ms
113,408 KB
testcase_22 AC 133 ms
122,128 KB
testcase_23 AC 125 ms
120,564 KB
testcase_24 AC 112 ms
113,664 KB
testcase_25 AC 109 ms
111,872 KB
testcase_26 AC 142 ms
129,580 KB
testcase_27 AC 142 ms
130,132 KB
testcase_28 AC 143 ms
129,616 KB
testcase_29 AC 143 ms
129,872 KB
testcase_30 AC 144 ms
129,748 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
B=set(A)

X=N
for a in A:
    if a+1 in B:
        X+=1
    else:
        continue

    b=a+1
    while b+2 in B:
        X+=1
        b+=2

print(X)
0