結果

問題 No.1268 Fruit Rush 2
ユーザー trineutrontrineutron
提出日時 2020-10-23 22:47:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 195 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 34,952 KB
最終ジャッジ日時 2024-07-21 11:49:02
合計ジャッジ時間 7,142 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,496 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 30 ms
10,496 KB
testcase_11 AC 29 ms
10,496 KB
testcase_12 AC 30 ms
10,496 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 30 ms
10,496 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 332 ms
33,192 KB
testcase_27 AC 333 ms
32,524 KB
testcase_28 AC 334 ms
32,652 KB
testcase_29 AC 327 ms
33,060 KB
testcase_30 AC 340 ms
32,528 KB
testcase_31 AC 300 ms
29,400 KB
testcase_32 AC 298 ms
29,400 KB
testcase_33 AC 236 ms
34,824 KB
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = sorted(list(map(int, input().split())))
ans = 0
l = 0
for i in range(n):
    l += 1
    ans += l // 2 + 1
    if i < n - 1 and a[i + 1] != a[i] + 1:
        l = 0
print(ans)
0