結果

問題 No.964 2020
ユーザー fal_rndfal_rnd
提出日時 2020-02-04 18:42:44
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 818 ms / 2,020 ms
コード長 99 bytes
コンパイル時間 6,883 ms
コンパイル使用メモリ 258,392 KB
実行使用メモリ 64,988 KB
最終ジャッジ日時 2023-10-21 06:28:00
合計ジャッジ時間 16,278 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 808 ms
64,888 KB
testcase_01 AC 810 ms
64,952 KB
testcase_02 AC 817 ms
64,956 KB
testcase_03 AC 798 ms
64,952 KB
testcase_04 AC 804 ms
64,920 KB
testcase_05 AC 805 ms
64,944 KB
testcase_06 AC 802 ms
64,956 KB
testcase_07 AC 786 ms
64,980 KB
testcase_08 AC 814 ms
64,988 KB
testcase_09 AC 818 ms
64,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App{
	val n=io.StdIn.readInt
	println((1 to n).map(i=>i%10+"").reduce(_+_)*n)
}
0