結果

問題 No.687 E869120 and Constructing Array 1
ユーザー tubo28tubo28
提出日時 2018-05-24 07:07:37
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 171 bytes
コンパイル時間 6,286 ms
コンパイル使用メモリ 243,984 KB
実行使用メモリ 64,856 KB
最終ジャッジ日時 2024-06-30 07:13:17
合計ジャッジ時間 15,401 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 839 ms
64,856 KB
testcase_01 AC 815 ms
64,724 KB
testcase_02 AC 827 ms
64,772 KB
testcase_03 AC 821 ms
64,820 KB
testcase_04 AC 795 ms
64,520 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 779 ms
64,656 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