結果

問題 No.2343 (l+r)/2
ユーザー simansiman
提出日時 2023-06-10 07:06:56
言語 Ruby
(3.3.0)
結果
AC  
実行時間 649 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 22,272 KB
最終ジャッジ日時 2024-06-10 18:13:17
合計ジャッジ時間 3,564 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,288 KB
testcase_01 AC 649 ms
12,416 KB
testcase_02 AC 89 ms
12,544 KB
testcase_03 AC 188 ms
12,288 KB
testcase_04 AC 114 ms
17,664 KB
testcase_05 AC 93 ms
13,696 KB
testcase_06 AC 94 ms
13,568 KB
testcase_07 AC 140 ms
14,300 KB
testcase_08 AC 160 ms
13,636 KB
testcase_09 AC 135 ms
13,312 KB
testcase_10 AC 103 ms
14,848 KB
testcase_11 AC 149 ms
21,760 KB
testcase_12 AC 132 ms
20,096 KB
testcase_13 AC 125 ms
15,744 KB
testcase_14 AC 169 ms
22,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

T = gets.to_i

T.times do
  n = gets.to_i
  a = gets.split.map(&:to_i)

  if a[0] == 1
    a = a.map { |x| x ^ 1 }
  end

  if a[-1] == 1
    puts 'Yes'
  elsif a.each_cons(2).any? { |x, y| x == 1 && y == 1 }
    puts 'Yes'
  elsif a.count(1) >= 4
    puts 'Yes'
  else
    puts 'No'
  end
end
0