結果
問題 | No.1687 What the Heck? |
ユーザー | Mik10 |
提出日時 | 2021-10-06 00:48:01 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 244 bytes |
コンパイル時間 | 170 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 258,840 KB |
最終ジャッジ日時 | 2024-07-23 02:38:44 |
合計ジャッジ時間 | 4,105 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
59,340 KB |
testcase_01 | AC | 37 ms
52,620 KB |
testcase_02 | AC | 37 ms
52,864 KB |
testcase_03 | AC | 37 ms
53,144 KB |
testcase_04 | AC | 36 ms
52,940 KB |
testcase_05 | AC | 37 ms
52,084 KB |
testcase_06 | AC | 37 ms
53,304 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
n = int(input()) suzu = list(map(int, input().split())) ans = 0 draw = 0 for i in range(n, 1, -1): smax = suzu.index(i) + 1 pt = sum([i+1 for i in range(n)]) - smax*2 - draw ans = pt if ans < pt else ans draw += smax print (ans)