結果

問題 No.1829 Möbius Tunnelling
ユーザー yudedakoyudedako
提出日時 2022-02-17 20:14:29
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 919 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 9,266 ms
コンパイル使用メモリ 250,484 KB
実行使用メモリ 64,812 KB
最終ジャッジ日時 2024-06-29 07:48:27
合計ジャッジ時間 35,331 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 917 ms
64,660 KB
testcase_01 AC 906 ms
64,516 KB
testcase_02 AC 919 ms
64,592 KB
testcase_03 AC 915 ms
64,660 KB
testcase_04 AC 911 ms
64,364 KB
testcase_05 AC 912 ms
64,612 KB
testcase_06 AC 919 ms
64,812 KB
testcase_07 AC 908 ms
64,412 KB
testcase_08 AC 915 ms
64,772 KB
testcase_09 AC 915 ms
64,524 KB
testcase_10 AC 904 ms
64,708 KB
testcase_11 AC 909 ms
64,744 KB
testcase_12 AC 912 ms
64,656 KB
testcase_13 AC 917 ms
64,604 KB
testcase_14 AC 905 ms
64,744 KB
testcase_15 AC 917 ms
64,524 KB
testcase_16 AC 912 ms
64,716 KB
testcase_17 AC 916 ms
64,628 KB
testcase_18 AC 919 ms
64,656 KB
testcase_19 AC 915 ms
64,632 KB
testcase_20 AC 911 ms
64,596 KB
testcase_21 AC 910 ms
64,700 KB
testcase_22 AC 909 ms
64,504 KB
testcase_23 AC 908 ms
64,576 KB
testcase_24 AC 912 ms
64,756 KB
testcase_25 AC 918 ms
64,688 KB
testcase_26 AC 918 ms
64,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.collection.mutable
import scala.collection.mutable.ArrayBuffer
import scala.io.StdIn.*
import scala.util.chaining.*
import scala.math.*


@main def main =
  val n = readLine.toInt
  val Array(a, b, c) = readLine.split(' ').map(_.toInt)
  if a < b then
    println(if a < c then "Yes" else "No")
  else
    println(if c < a then "Yes" else "No")
0