結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー scaler
提出日時 2024-09-02 10:56:18
言語 Scala(Beta)
(3.6.2)
結果
AC  
実行時間 907 ms / 1,000 ms
コード長 153 bytes
コンパイル時間 15,514 ms
コンパイル使用メモリ 266,540 KB
実行使用メモリ 64,884 KB
最終ジャッジ日時 2024-09-02 10:56:37
合計ジャッジ時間 14,145 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine


@main
def yuki9001(): Unit =
  val a = readLine.split(" ").map(_.toInt).reduce(_+_)
  val s = readLine
  print(s"$a $s")
0