結果
| 問題 |
No.45 回転寿司
|
| ユーザー |
SHIN_1105_K
|
| 提出日時 | 2017-10-24 16:58:32 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 5,000 ms |
| コード長 | 380 bytes |
| コンパイル時間 | 608 ms |
| コンパイル使用メモリ | 53,464 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-27 17:36:31 |
| 合計ジャッジ時間 | 1,520 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 30 |
ソースコード
#include <stdio.h>
#include <iostream>
#include <string>
using namespace std;
int main(){
int n;
cin >> n;
int before_2 = 0;
int before_1 = 0;
int ans = 0;
for(int i=0; i<n; i++){
int v;
cin >> v;
if(v+before_2 > before_1){
ans = v+before_2;
}
else{
ans = before_1;
}
before_2 = before_1;
before_1 = ans;
}
cout << ans << endl;
return 0;
}
SHIN_1105_K