結果

問題 No.2350 Four Seasons
ユーザー HirotoOdajimaHirotoOdajima
提出日時 2023-06-18 17:06:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 158 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 87,220 KB
実行使用メモリ 71,640 KB
最終ジャッジ日時 2023-09-08 13:09:01
合計ジャッジ時間 2,055 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
71,120 KB
testcase_01 AC 73 ms
71,352 KB
testcase_02 AC 74 ms
71,344 KB
testcase_03 WA -
testcase_04 AC 74 ms
71,040 KB
testcase_05 AC 74 ms
71,160 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 74 ms
71,164 KB
testcase_09 WA -
testcase_10 AC 74 ms
71,160 KB
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

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