結果

問題 No.687 E869120 and Constructing Array 1
ユーザー tubo28tubo28
提出日時 2018-05-24 07:09:34
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 935 ms / 1,000 ms
コード長 262 bytes
コンパイル時間 8,575 ms
コンパイル使用メモリ 271,160 KB
実行使用メモリ 64,960 KB
最終ジャッジ日時 2024-06-30 07:13:39
合計ジャッジ時間 18,008 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 906 ms
64,704 KB
testcase_01 AC 915 ms
64,924 KB
testcase_02 AC 899 ms
64,780 KB
testcase_03 AC 905 ms
64,836 KB
testcase_04 AC 903 ms
64,960 KB
testcase_05 AC 908 ms
64,904 KB
testcase_06 AC 923 ms
64,704 KB
testcase_07 AC 931 ms
64,800 KB
testcase_08 AC 935 ms
64,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main {
  val sc = new Scanner(System.in)
  def main(args: Array[String]): Unit = {
    val n = sc.nextInt
    for (i <- 1 to 10; j <- 1 to 10) {
      if (i + j == n) {
        println(s"$i $j")
        return
      }
    }
  }
}
0