結果

問題 No.2836 Comment Out
ユーザー suzuishisuzuishi
提出日時 2024-08-09 21:50:12
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 157 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 27,776 KB
最終ジャッジ日時 2024-08-09 21:50:22
合計ジャッジ時間 8,822 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,288 KB
testcase_01 AC 81 ms
12,416 KB
testcase_02 AC 80 ms
12,160 KB
testcase_03 AC 79 ms
12,288 KB
testcase_04 AC 80 ms
12,288 KB
testcase_05 AC 78 ms
12,416 KB
testcase_06 AC 78 ms
12,288 KB
testcase_07 AC 162 ms
25,600 KB
testcase_08 AC 167 ms
25,600 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 148 ms
27,648 KB
testcase_15 AC 149 ms
27,520 KB
testcase_16 AC 151 ms
27,520 KB
testcase_17 WA -
testcase_18 AC 154 ms
27,648 KB
testcase_19 WA -
testcase_20 AC 150 ms
27,648 KB
testcase_21 AC 150 ms
27,648 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 115 ms
19,840 KB
testcase_25 AC 143 ms
24,960 KB
testcase_26 AC 106 ms
17,536 KB
testcase_27 AC 131 ms
23,552 KB
testcase_28 WA -
testcase_29 AC 128 ms
22,528 KB
testcase_30 AC 112 ms
17,920 KB
testcase_31 AC 133 ms
22,656 KB
testcase_32 WA -
testcase_33 AC 120 ms
19,712 KB
testcase_34 AC 95 ms
16,128 KB
testcase_35 AC 141 ms
24,960 KB
testcase_36 WA -
testcase_37 AC 136 ms
24,576 KB
testcase_38 AC 124 ms
20,864 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 124 ms
22,656 KB
testcase_42 WA -
testcase_43 AC 96 ms
15,616 KB
testcase_44 AC 80 ms
12,416 KB
testcase_45 WA -
testcase_46 AC 77 ms
12,416 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 83 ms
12,160 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 78 ms
12,288 KB
testcase_55 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

def solve(a)
  return a.each_with_index.all? {|i, j| i <= j + 1}
end
n = gets.to_i
a = gets.split.map &:to_i
puts solve(a) || solve(a.reverse) ? "Yes" : "No"
0