結果

問題 No.1801 Segment Game
ユーザー kona0001kona0001
提出日時 2023-03-14 04:22:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-09-18 07:53:08
合計ジャッジ時間 4,396 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,288 KB
testcase_01 AC 325 ms
19,584 KB
testcase_02 AC 315 ms
19,328 KB
testcase_03 AC 315 ms
19,072 KB
testcase_04 AC 313 ms
19,200 KB
testcase_05 AC 315 ms
19,200 KB
testcase_06 AC 326 ms
19,200 KB
testcase_07 AC 312 ms
19,200 KB
testcase_08 AC 316 ms
19,200 KB
testcase_09 AC 329 ms
19,200 KB
testcase_10 AC 79 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

t = gets.to_i
ans = []
t.times do
  h,w,d = gets.split.map(&:to_i)
  f = false
  if h%2==0
    f = true if w <= d
  else
    f = true if w*w + 1 <= d*d
  end
  if w%2==0
    f = true if h <= d
  else
    f = true if h*h + 1 <= d*d
  end
  if f
    ans << "N"
  else
    ans << "S"
  end
end
puts ans
0