結果

問題 No.1687 What the Heck?
ユーザー Mik10Mik10
提出日時 2021-10-06 14:18:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 301 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 102,780 KB
最終ジャッジ日時 2024-07-23 02:53:00
合計ジャッジ時間 2,388 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,348 KB
testcase_01 WA -
testcase_02 AC 36 ms
53,360 KB
testcase_03 WA -
testcase_04 AC 36 ms
52,340 KB
testcase_05 AC 36 ms
52,204 KB
testcase_06 AC 36 ms
53,292 KB
testcase_07 AC 53 ms
73,324 KB
testcase_08 AC 59 ms
80,468 KB
testcase_09 AC 52 ms
74,084 KB
testcase_10 AC 49 ms
68,592 KB
testcase_11 AC 49 ms
68,392 KB
testcase_12 AC 81 ms
101,900 KB
testcase_13 AC 81 ms
101,680 KB
testcase_14 AC 83 ms
102,720 KB
testcase_15 AC 83 ms
102,476 KB
testcase_16 AC 83 ms
101,560 KB
testcase_17 AC 42 ms
61,964 KB
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
suzu = list(map(int, input().split()))
draw = 0
pt = sum(range(n)) + n
for i in range(n, 1, -1):
    smax = suzu.index(i) + 1
    smax2 = suzu.index(i-1) + 1
    if smax2 <= smax/2:
        draw += smax
        continue
    else:
        pt -= (smax*2 + draw)
        break
print (pt)
0