結果
| 問題 |
No.45 回転寿司
|
| ユーザー |
kibenronrigaku1
|
| 提出日時 | 2016-02-16 15:37:23 |
| 言語 | Python2 (2.7.18) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 129 bytes |
| コンパイル時間 | 192 ms |
| コンパイル使用メモリ | 6,912 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2024-11-24 11:12:14 |
| 合計ジャッジ時間 | 1,824 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 RE * 1 |
| other | WA * 30 |
ソースコード
N = int(raw_input()) li = raw_input().split() a,b = int(li[0]),int(li[1]) for i in range(2, N-1): a,b = b,a + int(li[i]) print b
kibenronrigaku1