結果

問題 No.2836 Comment Out
ユーザー suzuishisuzuishi
提出日時 2024-08-09 22:06:51
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 208 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 28,928 KB
最終ジャッジ日時 2024-08-09 22:07:14
合計ジャッジ時間 20,138 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,160 KB
testcase_01 AC 76 ms
12,288 KB
testcase_02 AC 78 ms
12,288 KB
testcase_03 AC 79 ms
12,288 KB
testcase_04 AC 79 ms
12,288 KB
testcase_05 AC 80 ms
12,416 KB
testcase_06 AC 80 ms
12,160 KB
testcase_07 AC 175 ms
25,600 KB
testcase_08 AC 173 ms
25,856 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 535 ms
28,800 KB
testcase_15 AC 571 ms
28,800 KB
testcase_16 AC 539 ms
28,672 KB
testcase_17 WA -
testcase_18 AC 534 ms
28,672 KB
testcase_19 WA -
testcase_20 AC 571 ms
28,672 KB
testcase_21 AC 549 ms
28,800 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 310 ms
21,760 KB
testcase_25 AC 538 ms
26,368 KB
testcase_26 AC 258 ms
19,584 KB
testcase_27 AC 414 ms
25,088 KB
testcase_28 WA -
testcase_29 AC 390 ms
24,192 KB
testcase_30 AC 260 ms
19,072 KB
testcase_31 AC 400 ms
24,320 KB
testcase_32 WA -
testcase_33 AC 345 ms
21,760 KB
testcase_34 AC 203 ms
16,128 KB
testcase_35 AC 488 ms
26,496 KB
testcase_36 WA -
testcase_37 AC 435 ms
25,984 KB
testcase_38 AC 366 ms
22,912 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 427 ms
24,448 KB
testcase_42 WA -
testcase_43 AC 201 ms
16,000 KB
testcase_44 AC 83 ms
12,288 KB
testcase_45 WA -
testcase_46 AC 94 ms
12,160 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 83 ms
12,288 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 80 ms
12,288 KB
testcase_55 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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