結果

問題 No.45 回転寿司
ユーザー kr1buki
提出日時 2017-01-31 17:00:00
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 235 bytes
コンパイル時間 928 ms
コンパイル使用メモリ 70,196 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 22:43:42
合計ジャッジ時間 1,958 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 3
other WA * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <vector>
#include <iostream>
#include <algorithm>

int main(){
int n;
scanf("%d",&n);
std::vector<int> v(n);
for(int i=0;i<n;i++){
scanf("%d",&v[i]);
}
if(n==1){
printf("%d\n",v[0]);
return 0;
}

return 0;
}
0