結果

問題 No.3027 114514
ユーザー coco0715coco0715
提出日時 2023-12-11 22:18:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 263 bytes
コンパイル時間 1,827 ms
コンパイル使用メモリ 167,788 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2023-12-11 22:18:12
合計ジャッジ時間 2,345 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,676 KB
testcase_03 AC 2 ms
6,676 KB
testcase_04 AC 1 ms
6,676 KB
testcase_05 AC 2 ms
6,676 KB
testcase_06 AC 2 ms
6,676 KB
testcase_07 AC 2 ms
6,676 KB
testcase_08 WA -
testcase_09 AC 2 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//define
#define yes (cout<<"Yes"<<endl)
#define no (cout<<"No"<<endl)
#define ll long long
#define str string
using namespace std;
int inf=2000000000;


int main(){
vector<int> a={7,3,9,4,5,6,1,2,8,0};
int n;cin>>n;
cout<<a[n-1]<<endl;
}
0