結果
問題 |
No.484 収穫
|
ユーザー |
![]() |
提出日時 | 2025-06-12 20:01:25 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 322 bytes |
コンパイル時間 | 324 ms |
コンパイル使用メモリ | 81,960 KB |
実行使用メモリ | 63,804 KB |
最終ジャッジ日時 | 2025-06-12 20:04:59 |
合計ジャッジ時間 | 2,775 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 WA * 8 |
ソースコード
n = int(input()) A = list(map(int, input().split())) min_T = float('inf') for x in range(n): current_max = 0 for i in range(n): dist = abs(i - x) temp = A[i] + dist if temp > current_max: current_max = temp if current_max < min_T: min_T = current_max print(min_T)