結果
| 問題 | No.1155 Nada Picnic |
| ユーザー |
hir355
|
| 提出日時 | 2020-11-20 22:44:18 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 64 ms / 2,000 ms |
| + 627µs | |
| コード長 | 133 bytes |
| 記録 | |
| コンパイル時間 | 257 ms |
| コンパイル使用メモリ | 96,212 KB |
| 実行使用メモリ | 78,720 KB |
| 最終ジャッジ日時 | 2026-08-24 02:34:02 |
| 合計ジャッジ時間 | 1,503 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
ソースコード
n = int(input())
if n == 1:
print('Shiitakerando')
elif n == 2:
print('Otsukakokusaibijutsukan')
else:
print('Spring-8')
hir355