結果

問題 No.3004 愛国心
ユーザー fonyatanfonyatan
提出日時 2015-02-14 00:36:12
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 633 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 85,252 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-06 00:46:41
合計ジャッジ時間 1,100 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0