結果

問題 No.2878 𝕀𝔾ℕ𝕀𝕋𝕀𝕆ℕ
コンテスト
ユーザー vjudge1
提出日時 2025-12-21 22:46:25
言語 C++14
(gcc 13.3.0 + boost 1.89.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 906 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,183 ms
コンパイル使用メモリ 162,412 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-12-21 22:46:28
合計ジャッジ時間 2,082 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
#define int long long
#define fst ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
using namespace std;
typedef long long ll;
typedef pair<int, int> PII;
const int N = 4e6 + 7;
const int MOD = 998244353;
const int INF = 0X3F3F3F3F;
const int dx[] = {-1, 1, 0, 0, -1, -1, +1, +1};
const int dy[] = {0, 0, -1, 1, -1, +1, -1, +1};

int a[N] , c[N] , b[N] ;

bool v[N] ;

int n , k , m ;

int t ;

inline int read ()
{
	int s = 0 , w = 1 ;
	char ch = getchar () ;
	while (ch < '0' || ch > '9')
	{
		if (ch == '-')
			w = -1;
		ch = getchar () ;
	}
	while (ch >= '0' && ch <= '9')
	{
		s = s * 10 + ch - '0' ;
		ch = getchar ();
	}
	return s * w ;
}
inline void write (int x)
{
	if (x < 0) putchar ('-') , x = -x ;
	if (x > 9) write (x / 10) ;
	putchar (x % 10 + '0') ;
	return ;
}

signed main()
{
	fst ;
	string s = "IGNITION" ;
	cin >> n ;
	cout << s[n - 1] ;
    return 0;
}
//
0