結果
| 問題 |
No.1155 Nada Picnic
|
| ユーザー |
sorag
|
| 提出日時 | 2022-08-01 10:33:21 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 304 bytes |
| コンパイル時間 | 795 ms |
| コンパイル使用メモリ | 72,428 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-21 22:57:03 |
| 合計ジャッジ時間 | 1,299 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
ソースコード
#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<map>
using namespace std;
int main() {
int n;
cin >> n;
if(n==1) cout << "Shiitakerando" << endl;
else if (n == 2) cout << "Otsukakokusaibijutsukan" << endl;
else cout << "Spring-8" << endl;
return 0;
}
sorag