結果

問題 No.3027 114514
ユーザー coco0715coco0715
提出日時 2023-12-11 22:18:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 263 bytes
コンパイル時間 1,808 ms
コンパイル使用メモリ 166,968 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-27 04:38:53
合計ジャッジ時間 2,232 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 2 ms
5,376 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