結果

問題 No.2350 Four Seasons
ユーザー MottchanMottchan
提出日時 2023-06-16 21:23:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 86,636 KB
実行使用メモリ 71,308 KB
最終ジャッジ日時 2023-09-06 18:29:28
合計ジャッジ時間 1,946 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,064 KB
testcase_01 AC 71 ms
71,148 KB
testcase_02 AC 71 ms
71,308 KB
testcase_03 AC 72 ms
71,004 KB
testcase_04 AC 73 ms
71,172 KB
testcase_05 AC 71 ms
71,168 KB
testcase_06 AC 69 ms
71,116 KB
testcase_07 AC 71 ms
71,280 KB
testcase_08 AC 70 ms
70,972 KB
testcase_09 AC 69 ms
71,116 KB
testcase_10 AC 70 ms
70,912 KB
testcase_11 AC 71 ms
71,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l1 = [3,4,5]
l2 = [6,7,8]
l3 = [9,10,11]
l4 = [12,1,2]

n = int(input())
if n in l1:
    print('spring')
elif n in l2:
    print('summer')
elif n in l3:
    print('fall')
elif n in l4:
    print('winter')
0