結果
問題 | No.929 よくあるボールを移動するやつ |
ユーザー |
![]() |
提出日時 | 2020-01-03 21:41:59 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 66 ms / 2,000 ms |
コード長 | 159 bytes |
コンパイル時間 | 304 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 12,652 KB |
最終ジャッジ日時 | 2024-11-22 19:32:53 |
合計ジャッジ時間 | 1,894 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 12 |
ソースコード
def main(): N=int(input()) p=[int(s)-1 for s in input().split()] d=m=0 for i in range(N): d+=p[i] m+=abs(d) print(m) main()