結果

問題 No.2350 Four Seasons
ユーザー abap34abap34
提出日時 2023-07-15 00:44:49
言語 Julia
(1.10.2)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 45 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 237,336 KB
最終ジャッジ日時 2024-04-09 14:17:19
合計ジャッジ時間 3,626 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 223 ms
235,472 KB
testcase_01 AC 227 ms
235,540 KB
testcase_02 AC 223 ms
234,884 KB
testcase_03 AC 226 ms
237,336 KB
testcase_04 AC 225 ms
235,464 KB
testcase_05 AC 225 ms
235,084 KB
testcase_06 AC 224 ms
234,980 KB
testcase_07 AC 226 ms
235,352 KB
testcase_08 AC 226 ms
235,332 KB
testcase_09 AC 225 ms
235,432 KB
testcase_10 AC 224 ms
235,176 KB
testcase_11 AC 226 ms
235,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = parse(Int, readline())

println(["winter", "winter", "spring", "spring", "spring", "summer", "summer", "summer", "fall", "fall", "fall", "winter"][X])
0