結果
| 問題 |
No.2878 𝕀𝔾ℕ𝕀𝕋𝕀𝕆ℕ
|
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2025-09-27 12:08:30 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 497 bytes |
| コンパイル時間 | 1,464 ms |
| コンパイル使用メモリ | 162,364 KB |
| 実行使用メモリ | 7,716 KB |
| 最終ジャッジ日時 | 2025-09-27 12:08:33 |
| 合計ジャッジ時間 | 2,371 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 8 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
#define int long long
/*====================*/
const int N=2e5+10;
/*====================*/
const int INF=0x3f3f3f3f;
const int MOD=1e9+7;
/*====================*/
string s="IGNITION";
void Solve(){
int i;
cin>>i;
cout<<s[i-1];
}
/*====================*/
signed main(){
//freopen("barrack4.in","r",stdin);
//freopen(".out","w",stdout);
ios::sync_with_stdio(false);
cin.tie(0);cout.tie(0);
int T=1;//cin>>T;
while(T--){
Solve();
}
return 0;
}
vjudge1