結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー cielciel
提出日時 2018-12-06 12:11:30
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 961 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 10,851 ms
コンパイル使用メモリ 265,256 KB
実行使用メモリ 63,508 KB
最終ジャッジ日時 2024-07-01 05:43:15
合計ジャッジ時間 32,695 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 935 ms
63,376 KB
testcase_01 AC 941 ms
63,056 KB
testcase_02 AC 952 ms
63,332 KB
testcase_03 AC 931 ms
63,076 KB
testcase_04 AC 927 ms
62,924 KB
testcase_05 AC 938 ms
62,940 KB
testcase_06 AC 961 ms
63,236 KB
testcase_07 AC 948 ms
63,252 KB
testcase_08 AC 930 ms
63,328 KB
testcase_09 AC 934 ms
63,072 KB
testcase_10 AC 955 ms
63,352 KB
testcase_11 AC 938 ms
63,316 KB
testcase_12 AC 949 ms
63,384 KB
testcase_13 AC 936 ms
63,428 KB
testcase_14 AC 931 ms
63,272 KB
testcase_15 AC 926 ms
63,204 KB
testcase_16 AC 929 ms
63,248 KB
testcase_17 AC 938 ms
63,140 KB
testcase_18 AC 943 ms
63,316 KB
testcase_19 AC 936 ms
63,472 KB
testcase_20 AC 950 ms
63,148 KB
testcase_21 AC 932 ms
63,508 KB
testcase_22 AC 950 ms
63,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//usr/bin/env scala $0 $@;exit
object Main{
	def main(args: Array[String]) = {
		val cin=new java.util.Scanner(System.in)
		val starting:Long=1
		val bse=10
		while(cin.hasNext()){
			var n=cin.nextLong()
			n+=starting-2
			var digits:Long=1
			var expbase:Long=1
			var x:Long=bse-1
			while(x<=n){
				n-=x
				digits+=1
				expbase*=bse
				x=digits*expbase*(bse-1)
			}
			var num=expbase+n/digits
			for(i<-1 to (digits-1-n%digits).toInt)num/=bse
			println(num%bse)
		}
	}
}
0