結果

問題 No.2350 Four Seasons
ユーザー abap34abap34
提出日時 2023-07-15 00:44:49
言語 Julia
(1.10.2)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 234,040 KB
最終ジャッジ日時 2024-10-01 17:26:53
合計ジャッジ時間 4,037 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 235 ms
233,916 KB
testcase_01 AC 232 ms
233,656 KB
testcase_02 AC 233 ms
233,916 KB
testcase_03 AC 232 ms
233,532 KB
testcase_04 AC 233 ms
233,920 KB
testcase_05 AC 233 ms
233,660 KB
testcase_06 AC 231 ms
233,916 KB
testcase_07 AC 230 ms
233,592 KB
testcase_08 AC 229 ms
234,040 KB
testcase_09 AC 229 ms
233,532 KB
testcase_10 AC 234 ms
233,532 KB
testcase_11 AC 234 ms
233,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = parse(Int, readline())

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