結果

問題 No.632 穴埋め門松列
ユーザー スカーレットニードルスカーレットニードル
提出日時 2018-01-24 08:46:36
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 891 ms / 1,000 ms
コード長 326 bytes
コンパイル時間 8,210 ms
コンパイル使用メモリ 255,192 KB
実行使用メモリ 64,564 KB
最終ジャッジ日時 2024-06-30 03:49:32
合計ジャッジ時間 14,916 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 884 ms
64,316 KB
testcase_01 AC 880 ms
64,408 KB
testcase_02 AC 886 ms
64,456 KB
testcase_03 AC 888 ms
64,340 KB
testcase_04 AC 872 ms
64,536 KB
testcase_05 AC 891 ms
64,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App {
    val (a, b, c) = scala.io.StdIn.readf3("{0} {1} {2}")
    val tp = (a.asInstanceOf[String], b.asInstanceOf[String], c.asInstanceOf[String])
    tp match {
    case ("?", a, b) => println(if (a > b) 1 else 4)
    case (a, b, "?") => println(if (a < b) 1 else 4)
    case _ => println(14)
    }   
}
0