結果
問題 | No.3004 愛国心 |
ユーザー | fonyatan |
提出日時 | 2015-02-14 00:36:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 633 bytes |
コンパイル時間 | 658 ms |
コンパイル使用メモリ | 85,776 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-23 19:53:04 |
合計ジャッジ時間 | 1,091 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
#include <cstring> #include <vector> #include <list> #include <map> #include <set> #include <deque> #include <stack> #include <bitset> #include <algorithm> #include <functional> #include <numeric> #include <utility> #include <sstream> #include <iostream> #include <iomanip> #include <cstdio> #include <cmath> #include <cstdlib> #include <ctime> #include <memory.h> #include <cassert> using namespace std; int main(){ int N; while(1){ cin>>N; if(N==0){ break; } else if(N==3){ cout<<"k"<<endl; } else if(N==4){ cout<<"i"<<endl; } else if(N==7){ cout<<"d"<<endl; } else if(N==8){ cout<<"e"<<endl; } } return 0; }