結果

問題 No.2836 Comment Out
ユーザー tomeruntomerun
提出日時 2024-08-09 21:29:35
言語 Crystal
(1.11.2)
結果
WA  
実行時間 -
コード長 113 bytes
コンパイル時間 12,043 ms
コンパイル使用メモリ 296,168 KB
実行使用メモリ 19,456 KB
最終ジャッジ日時 2024-08-09 21:29:53
合計ジャッジ時間 15,447 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 27 ms
15,872 KB
testcase_08 AC 27 ms
15,872 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 56 ms
19,328 KB
testcase_15 AC 56 ms
19,200 KB
testcase_16 AC 58 ms
19,328 KB
testcase_17 WA -
testcase_18 AC 58 ms
19,200 KB
testcase_19 WA -
testcase_20 AC 60 ms
19,328 KB
testcase_21 AC 60 ms
19,200 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 28 ms
10,112 KB
testcase_25 AC 47 ms
16,640 KB
testcase_26 AC 19 ms
8,064 KB
testcase_27 AC 41 ms
14,848 KB
testcase_28 AC 39 ms
13,312 KB
testcase_29 AC 36 ms
14,208 KB
testcase_30 AC 22 ms
8,832 KB
testcase_31 AC 37 ms
14,208 KB
testcase_32 AC 15 ms
6,784 KB
testcase_33 AC 30 ms
11,392 KB
testcase_34 AC 15 ms
7,168 KB
testcase_35 AC 48 ms
15,488 KB
testcase_36 AC 28 ms
11,264 KB
testcase_37 AC 44 ms
15,232 KB
testcase_38 AC 33 ms
12,032 KB
testcase_39 AC 35 ms
12,160 KB
testcase_40 AC 37 ms
12,416 KB
testcase_41 AC 39 ms
14,208 KB
testcase_42 AC 47 ms
16,000 KB
testcase_43 AC 14 ms
6,656 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 WA -
testcase_46 AC 2 ms
5,376 KB
testcase_47 WA -
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 1 ms
5,376 KB
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = read_line.to_i
a = read_line.split.map(&.to_i64).sort
puts n.times.all? { |i| a[i] <= i + 1 } ? "Yes" : "No"
0