結果

問題 No.2350 Four Seasons
ユーザー 遭難者遭難者
提出日時 2023-06-16 23:17:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 86,720 KB
実行使用メモリ 71,200 KB
最終ジャッジ日時 2023-09-06 22:14:36
合計ジャッジ時間 1,935 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,148 KB
testcase_01 AC 72 ms
71,136 KB
testcase_02 AC 76 ms
70,868 KB
testcase_03 AC 70 ms
71,068 KB
testcase_04 AC 72 ms
71,192 KB
testcase_05 AC 71 ms
71,176 KB
testcase_06 AC 72 ms
71,100 KB
testcase_07 AC 72 ms
71,040 KB
testcase_08 AC 72 ms
70,952 KB
testcase_09 AC 72 ms
71,200 KB
testcase_10 AC 72 ms
70,948 KB
testcase_11 AC 72 ms
70,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x = int(input())
if x in [3, 4, 5]:
    print("spring")
if x in [6, 7, 8]:
    print("summer")
if x in [9, 10, 11]:
    print("fall")
if x in [12, 1, 2]:
    print("winter")
0