結果

問題 No.481 1から10
ユーザー lrf141lrf141
提出日時 2017-03-25 23:27:56
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 932 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 8,655 ms
コンパイル使用メモリ 268,684 KB
実行使用メモリ 63,840 KB
最終ジャッジ日時 2024-06-30 00:55:13
合計ジャッジ時間 19,612 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 903 ms
63,572 KB
testcase_01 AC 900 ms
63,704 KB
testcase_02 AC 890 ms
63,596 KB
testcase_03 AC 895 ms
63,680 KB
testcase_04 AC 911 ms
63,564 KB
testcase_05 AC 907 ms
63,660 KB
testcase_06 AC 932 ms
63,840 KB
testcase_07 AC 915 ms
63,784 KB
testcase_08 AC 914 ms
63,668 KB
testcase_09 AC 912 ms
63,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner
object no481{
    def main(args:Array[String]):Unit={
        val scan = new Scanner(System.in)
        val nums = for(i <- 1 to 9) yield scan.nextInt
        println(55-nums.sum)
    }
}
0