結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー fal_rndfal_rnd
提出日時 2019-02-07 23:53:29
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 952 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 9,130 ms
コンパイル使用メモリ 261,668 KB
実行使用メモリ 65,164 KB
最終ジャッジ日時 2024-07-01 11:27:18
合計ジャッジ時間 32,734 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 923 ms
65,164 KB
testcase_01 AC 937 ms
64,972 KB
testcase_02 AC 923 ms
64,880 KB
testcase_03 AC 939 ms
65,156 KB
testcase_04 AC 939 ms
65,044 KB
testcase_05 AC 934 ms
64,940 KB
testcase_06 AC 927 ms
65,080 KB
testcase_07 AC 937 ms
65,032 KB
testcase_08 AC 940 ms
65,128 KB
testcase_09 AC 931 ms
65,156 KB
testcase_10 AC 930 ms
64,988 KB
testcase_11 AC 942 ms
65,160 KB
testcase_12 AC 936 ms
65,028 KB
testcase_13 AC 930 ms
64,992 KB
testcase_14 AC 928 ms
65,076 KB
testcase_15 AC 952 ms
64,992 KB
testcase_16 AC 944 ms
64,936 KB
testcase_17 AC 939 ms
64,960 KB
testcase_18 AC 932 ms
64,976 KB
testcase_19 AC 926 ms
64,888 KB
testcase_20 AC 934 ms
65,032 KB
testcase_21 AC 941 ms
65,052 KB
testcase_22 AC 939 ms
65,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

case class F(c:Int,m:Int){
	override def toString:String = s"$c $m";
}

object Main{
	val s = new java.util.Scanner(System.in)
	def main(args:Array[String]):Unit ={
		println(0 to 100 map(_.toString) reduce (_ + _) charAt(s.nextInt))
	}
}
0