結果

問題 No.2878 𝕀𝔾ℕ𝕀𝕋𝕀𝕆ℕ
ユーザー 大友崚世
提出日時 2024-09-23 08:21:57
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 3,894 ms
コンパイル使用メモリ 64,696 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-23 08:24:02
合計ジャッジ時間 6,904 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
using namespace std;
int main() {
	int n;
	cin >> n;
	string s = "IGNITION";
	cout << s.at(n - 1) << endl;
}
0