結果

問題 No.2350 Four Seasons
ユーザー MottchanMottchan
提出日時 2023-06-16 21:23:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 53,408 KB
最終ジャッジ日時 2024-06-24 12:52:53
合計ジャッジ時間 1,177 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,424 KB
testcase_01 AC 39 ms
52,124 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 36 ms
53,408 KB
testcase_04 AC 36 ms
52,920 KB
testcase_05 AC 37 ms
52,556 KB
testcase_06 AC 37 ms
52,444 KB
testcase_07 AC 37 ms
52,556 KB
testcase_08 AC 38 ms
52,292 KB
testcase_09 AC 38 ms
52,556 KB
testcase_10 AC 38 ms
53,036 KB
testcase_11 AC 38 ms
52,112 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