結果

問題 No.964 2020
ユーザー fal_rndfal_rnd
提出日時 2020-02-04 18:42:44
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 933 ms / 2,020 ms
コード長 99 bytes
コンパイル時間 8,926 ms
コンパイル使用メモリ 261,796 KB
実行使用メモリ 64,932 KB
最終ジャッジ日時 2024-09-21 07:37:27
合計ジャッジ時間 19,061 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 913 ms
64,792 KB
testcase_01 AC 923 ms
64,932 KB
testcase_02 AC 926 ms
64,892 KB
testcase_03 AC 918 ms
64,788 KB
testcase_04 AC 915 ms
64,784 KB
testcase_05 AC 922 ms
64,840 KB
testcase_06 AC 933 ms
64,652 KB
testcase_07 AC 921 ms
64,520 KB
testcase_08 AC 925 ms
64,748 KB
testcase_09 AC 912 ms
64,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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