結果

問題 No.2350 Four Seasons
ユーザー HirotoOdajima
提出日時 2023-06-18 17:06:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 158 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 52,224 KB
最終ジャッジ日時 2024-06-26 06:21:22
合計ジャッジ時間 1,571 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 5 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

season = int(input())

if 3 <= season <= 5:
	print("spring")
if 6 <= season <= 8:
	print("summer")
if 9 <= season <= 11:
	print("fall")
else:
	print("winter")
0