結果

問題 No.8004 愛国心
ユーザー fonyatan
提出日時 2015-02-17 01:07:20
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 530 bytes
コンパイル時間 881 ms
コンパイル使用メモリ 86,396 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-23 19:47:10
合計ジャッジ時間 1,361 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

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(){
	string S="yukicoder";
	int N;
	while(1){
	cin>>N;
	if(N==0){
		break;
	}
	cout<<S[N-1]<<endl;
		}
	return 0;
}
0