結果

問題 No.687 E869120 and Constructing Array 1
ユーザー tubo28tubo28
提出日時 2018-05-24 07:07:37
言語 Scala(Beta)
(3.3.1)
結果
WA  
実行時間 -
コード長 171 bytes
コンパイル時間 6,816 ms
コンパイル使用メモリ 241,360 KB
実行使用メモリ 62,776 KB
最終ジャッジ日時 2023-09-12 19:33:41
合計ジャッジ時間 17,903 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 920 ms
62,368 KB
testcase_01 AC 914 ms
62,644 KB
testcase_02 AC 924 ms
62,776 KB
testcase_03 AC 917 ms
62,276 KB
testcase_04 AC 926 ms
62,408 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 918 ms
62,228 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main {
  val sc = new Scanner(System.in)
  def main(args: Array[String]): Unit = {
    val n = sc.nextInt
    println(s"1 ${n - 1}")
  }
}
0