結果

問題 No.1687 What the Heck?
ユーザー Mik10Mik10
提出日時 2021-10-06 14:24:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 318 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 103,000 KB
最終ジャッジ日時 2024-07-23 02:53:03
合計ジャッジ時間 2,437 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,584 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
51,456 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 41 ms
51,584 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 53 ms
72,576 KB
testcase_08 AC 62 ms
78,976 KB
testcase_09 AC 58 ms
72,320 KB
testcase_10 AC 50 ms
68,224 KB
testcase_11 AC 50 ms
68,224 KB
testcase_12 AC 83 ms
101,248 KB
testcase_13 AC 81 ms
101,504 KB
testcase_14 AC 83 ms
101,248 KB
testcase_15 AC 82 ms
101,248 KB
testcase_16 AC 81 ms
101,504 KB
testcase_17 AC 43 ms
61,184 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
else:
    pt = 0
print (pt)
0