結果

問題 No.1714 Tag on Grid
ユーザー yudedakoyudedako
提出日時 2022-01-25 14:08:36
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 868 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 11,046 ms
コンパイル使用メモリ 256,368 KB
実行使用メモリ 63,176 KB
最終ジャッジ日時 2024-12-16 03:35:48
合計ジャッジ時間 33,499 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 856 ms
62,936 KB
testcase_01 AC 855 ms
63,084 KB
testcase_02 AC 842 ms
63,024 KB
testcase_03 AC 857 ms
63,024 KB
testcase_04 AC 851 ms
62,916 KB
testcase_05 AC 862 ms
63,080 KB
testcase_06 AC 832 ms
63,176 KB
testcase_07 AC 836 ms
62,908 KB
testcase_08 AC 832 ms
63,036 KB
testcase_09 AC 844 ms
62,828 KB
testcase_10 AC 824 ms
63,032 KB
testcase_11 AC 842 ms
62,832 KB
testcase_12 AC 857 ms
62,984 KB
testcase_13 AC 851 ms
62,768 KB
testcase_14 AC 853 ms
62,932 KB
testcase_15 AC 861 ms
62,984 KB
testcase_16 AC 831 ms
62,848 KB
testcase_17 AC 846 ms
63,140 KB
testcase_18 AC 838 ms
63,040 KB
testcase_19 AC 867 ms
63,052 KB
testcase_20 AC 832 ms
62,884 KB
testcase_21 AC 827 ms
63,116 KB
testcase_22 AC 836 ms
63,168 KB
testcase_23 AC 825 ms
62,944 KB
testcase_24 AC 859 ms
62,940 KB
testcase_25 AC 839 ms
63,132 KB
testcase_26 AC 868 ms
63,056 KB
testcase_27 AC 858 ms
63,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.annotation.tailrec
import scala.io.StdIn.*


@main def main =
  val Array(height, width) = readLine().split(' ').map(_.toInt)
  val Array(ni, nj) = readLine().split(' ').map(_.toInt)
  val Array(zi, zj) = readLine().split(' ').map(_.toInt)
  println(if (ni + nj) % 2 != (zi + zj) % 2 then "Yes" else "No")
0