結果

問題 No.2878 𝕀𝔾ℕ𝕀𝕋𝕀𝕆ℕ
ユーザー karinohitokarinohito
提出日時 2024-09-08 12:58:26
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 2,031 ms
コンパイル使用メモリ 202,184 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-08 12:58:30
合計ジャッジ時間 2,541 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/maxflow>
using namespace atcoder;
using namespace std;
using ll=long long;

int main(){
    string S="IGNITION";
    int n;
    cin>>n;
    cout<<S[n-1]<<endl;
}
0