結果

問題 No.1412 Super Ryuo
ユーザー yumechiyumechi
提出日時 2021-03-01 00:15:15
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 843 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 6,849 ms
コンパイル使用メモリ 260,684 KB
実行使用メモリ 65,168 KB
最終ジャッジ日時 2024-10-03 00:27:57
合計ジャッジ時間 19,779 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 826 ms
65,028 KB
testcase_01 AC 832 ms
64,844 KB
testcase_02 AC 843 ms
65,140 KB
testcase_03 AC 837 ms
65,064 KB
testcase_04 AC 827 ms
64,924 KB
testcase_05 AC 826 ms
65,140 KB
testcase_06 AC 825 ms
65,020 KB
testcase_07 AC 810 ms
64,956 KB
testcase_08 AC 834 ms
64,964 KB
testcase_09 AC 835 ms
65,168 KB
testcase_10 AC 826 ms
65,116 KB
testcase_11 AC 824 ms
64,972 KB
testcase_12 AC 838 ms
64,872 KB
testcase_13 AC 810 ms
65,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)

  val a = BigInt(sc.nextInt)
  val b = BigInt(sc.nextInt)
  val c = BigInt(sc.nextInt)
  val d = BigInt(sc.nextInt)

  def check(a: BigInt, b: BigInt, c: BigInt, d: BigInt): Boolean = {
    if(a == c || b == d) return true
    if((a - c).abs + (b - d).abs <= 3) return true
    false
  }

  println(if (check(a, b, c, d)) 1 else 2)
}
0