結果
| 問題 | No.2350 Four Seasons |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-06-18 17:06:12 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 158 bytes |
| 記録 | |
| コンパイル時間 | 1,144 ms |
| コンパイル使用メモリ | 84,872 KB |
| 実行使用メモリ | 53,740 KB |
| 最終ジャッジ日時 | 2026-03-12 21:42:04 |
| 合計ジャッジ時間 | 2,022 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 5 WA * 5 |
ソースコード
season = int(input())
if 3 <= season <= 5:
print("spring")
if 6 <= season <= 8:
print("summer")
if 9 <= season <= 11:
print("fall")
else:
print("winter")