結果

問題 No.2878 𝕀𝔾ℕ𝕀𝕋𝕀𝕆ℕ
コンテスト
ユーザー vjudge1
提出日時 2025-09-27 12:08:30
言語 C++14
(gcc 15.2.0 + boost 1.90.0)
コンパイル:
g++-15 -O2 -lm -std=c++14 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 2,000 ms
+ 428µs
コード長 497 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 900 ms
コンパイル使用メモリ 178,796 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2026-07-15 07:18:57
合計ジャッジ時間 2,016 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#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;
}
0