結果

問題 No.632 穴埋め門松列
ユーザー tetsutetsu
提出日時 2018-01-19 21:29:13
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 887 ms / 1,000 ms
コード長 920 bytes
コンパイル時間 7,547 ms
コンパイル使用メモリ 253,192 KB
実行使用メモリ 65,028 KB
最終ジャッジ日時 2024-06-30 03:38:13
合計ジャッジ時間 14,211 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 880 ms
64,848 KB
testcase_01 AC 887 ms
64,792 KB
testcase_02 AC 877 ms
64,644 KB
testcase_03 AC 887 ms
65,028 KB
testcase_04 AC 878 ms
64,844 KB
testcase_05 AC 885 ms
64,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yuki180

import java.util.Scanner

object A {
  def kadomatsu(n1 :Int, n2: Int, n3: Int): Boolean = {
    if(n1 < n2 && n2 > n3) {
      return true
    }
    if(n1 > n2 && n2 < n3) {
      return true
    }
    return false
  }
  def main(args: Array[String]): Unit = {
    val sc = new Scanner(System.in)
    val c1, c2, c3 = sc.next()
    if(c1=="?") {
      val n2 = c2.toInt
      val n3 = c3.toInt
      if(kadomatsu(1, n2, n3)) {
        print(1)
      }
      if(kadomatsu(4, n2, n3)) {
        print(4)
      }
    } else if(c2=="?") {
      val n1 = c1.toInt
      val n3 = c3.toInt
      if(kadomatsu(n1, 1, n3)) {
        print(1)
      }
      if(kadomatsu(n1, 4, n3)) {
        print(4)
      }
    } else {
      val n1 = c1.toInt
      val n2 = c2.toInt
      if(kadomatsu(n1, n2, 1)) {
        print(1)
      }
      if(kadomatsu(n1, n2, 4)) {
        print(4)
      }
    }
    println()
  }
}
0