結果
| 問題 |
No.8004 愛国心
|
| コンテスト | |
| ユーザー |
kyuridenamida
|
| 提出日時 | 2014-12-25 22:35:34 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 295 bytes |
| コンパイル時間 | 1,502 ms |
| コンパイル使用メモリ | 158,780 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-12 23:14:39 |
| 合計ジャッジ時間 | 1,952 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 5 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
/*
3 k
4 i
7 d
8 e
*/
int main(){
int n;
while(cin >> n && n){
assert( 1 <= n && n <= 26 );
if( n == 3 ) cout << "k" << endl;
if( n == 4 ) cout << "i" << endl;
if( n == 7 ) cout << "d" << endl;
if( n == 8 ) cout << "e" << endl;
}
}
kyuridenamida