結果
問題 | No.2350 Four Seasons |
ユーザー | 遭難者 |
提出日時 | 2023-06-16 23:17:20 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 41 ms / 2,000 ms |
コード長 | 173 bytes |
コンパイル時間 | 172 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 51,968 KB |
最終ジャッジ日時 | 2024-06-24 16:25:11 |
合計ジャッジ時間 | 1,274 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 10 |
ソースコード
x = int(input()) if x in [3, 4, 5]: print("spring") if x in [6, 7, 8]: print("summer") if x in [9, 10, 11]: print("fall") if x in [12, 1, 2]: print("winter")