結果

問題 No.1107 三善アクセント
ユーザー yumechiyumechi
提出日時 2021-02-23 22:58:27
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 948 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 11,547 ms
コンパイル使用メモリ 261,464 KB
実行使用メモリ 65,676 KB
最終ジャッジ日時 2024-09-22 17:18:47
合計ジャッジ時間 36,483 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 944 ms
65,416 KB
testcase_01 AC 946 ms
65,352 KB
testcase_02 AC 947 ms
65,504 KB
testcase_03 AC 937 ms
65,308 KB
testcase_04 AC 942 ms
65,356 KB
testcase_05 AC 946 ms
65,336 KB
testcase_06 AC 943 ms
65,524 KB
testcase_07 AC 948 ms
65,404 KB
testcase_08 AC 945 ms
65,196 KB
testcase_09 AC 939 ms
65,504 KB
testcase_10 AC 942 ms
65,508 KB
testcase_11 AC 938 ms
65,676 KB
testcase_12 AC 946 ms
65,372 KB
testcase_13 AC 944 ms
65,388 KB
testcase_14 AC 935 ms
65,508 KB
testcase_15 AC 934 ms
65,388 KB
testcase_16 AC 942 ms
65,540 KB
testcase_17 AC 943 ms
65,236 KB
testcase_18 AC 945 ms
65,328 KB
testcase_19 AC 943 ms
65,452 KB
testcase_20 AC 948 ms
65,468 KB
testcase_21 AC 948 ms
65,384 KB
testcase_22 AC 944 ms
65,332 KB
testcase_23 AC 945 ms
65,432 KB
testcase_24 AC 934 ms
65,364 KB
testcase_25 AC 937 ms
65,320 KB
testcase_26 AC 935 ms
65,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

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

  val an = Array.fill(4)(sc.nextInt)
  println(if(an(0) < an(1) && an(2) > an(3)) "YES" else "NO")
}
0