結果
| 問題 |
No.8004 愛国心
|
| コンテスト | |
| ユーザー |
fonyatan
|
| 提出日時 | 2015-02-14 00:36:12 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 633 bytes |
| コンパイル時間 | 658 ms |
| コンパイル使用メモリ | 85,776 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-06-23 19:53:04 |
| 合計ジャッジ時間 | 1,091 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 5 |
ソースコード
#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;
}
fonyatan