結果

問題 No.1714 Tag on Grid
ユーザー yudedakoyudedako
提出日時 2022-01-25 14:08:36
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 905 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 8,362 ms
コンパイル使用メモリ 263,864 KB
実行使用メモリ 63,176 KB
最終ジャッジ日時 2024-05-09 13:45:34
合計ジャッジ時間 34,826 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 877 ms
63,032 KB
testcase_01 AC 880 ms
62,900 KB
testcase_02 AC 884 ms
63,004 KB
testcase_03 AC 881 ms
62,664 KB
testcase_04 AC 871 ms
63,056 KB
testcase_05 AC 865 ms
62,960 KB
testcase_06 AC 878 ms
63,152 KB
testcase_07 AC 852 ms
63,008 KB
testcase_08 AC 842 ms
63,168 KB
testcase_09 AC 905 ms
62,896 KB
testcase_10 AC 884 ms
62,752 KB
testcase_11 AC 884 ms
63,136 KB
testcase_12 AC 874 ms
62,984 KB
testcase_13 AC 893 ms
62,864 KB
testcase_14 AC 873 ms
63,132 KB
testcase_15 AC 890 ms
62,944 KB
testcase_16 AC 892 ms
62,920 KB
testcase_17 AC 875 ms
62,964 KB
testcase_18 AC 875 ms
62,788 KB
testcase_19 AC 856 ms
63,048 KB
testcase_20 AC 861 ms
63,176 KB
testcase_21 AC 865 ms
63,044 KB
testcase_22 AC 871 ms
63,124 KB
testcase_23 AC 874 ms
63,036 KB
testcase_24 AC 879 ms
62,980 KB
testcase_25 AC 882 ms
62,808 KB
testcase_26 AC 888 ms
63,156 KB
testcase_27 AC 869 ms
63,044 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