結果
問題 |
No.2350 Four Seasons
|
ユーザー |
|
提出日時 | 2023-12-16 21:04:02 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 173 bytes |
コンパイル時間 | 317 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-27 07:49:34 |
合計ジャッジ時間 | 1,104 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 4 WA * 6 |
ソースコード
season=["spring","summer","fall","winter"] x=int(input()) f=False for i in range(1,4): if x<=3*i and x>=3: print(season[i-1]) f=True break if not f: print(season[3])