結果

問題 No.2350 Four Seasons
ユーザー トミー
提出日時 2023-12-16 21:03:03
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 164 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-27 07:49:33
合計ジャッジ時間 1,177 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 3 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

season=["spring","summer","fall","winter"]
x=int(input())
f=False
for i in range(1,4):
	if x<=3*i:
		print(season[i-1])
		f=True
		break
if not f:
	print(season[3])
0