結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー cielciel
提出日時 2018-12-06 13:15:45
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 11,985 ms
コンパイル使用メモリ 430,724 KB
実行使用メモリ 51,360 KB
最終ジャッジ日時 2024-11-20 17:12:25
合計ジャッジ時間 20,618 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 355 ms
51,344 KB
testcase_01 AC 353 ms
51,080 KB
testcase_02 AC 352 ms
51,244 KB
testcase_03 AC 354 ms
50,956 KB
testcase_04 AC 351 ms
51,116 KB
testcase_05 AC 351 ms
51,360 KB
testcase_06 AC 352 ms
51,016 KB
testcase_07 AC 351 ms
51,016 KB
testcase_08 AC 354 ms
51,120 KB
testcase_09 AC 348 ms
51,076 KB
testcase_10 AC 358 ms
51,128 KB
testcase_11 AC 356 ms
51,192 KB
testcase_12 AC 346 ms
51,080 KB
testcase_13 AC 351 ms
51,264 KB
testcase_14 AC 348 ms
51,056 KB
testcase_15 AC 351 ms
51,168 KB
testcase_16 AC 357 ms
51,160 KB
testcase_17 AC 358 ms
51,076 KB
testcase_18 AC 355 ms
51,024 KB
testcase_19 AC 353 ms
51,180 KB
testcase_20 AC 356 ms
51,252 KB
testcase_21 AC 360 ms
51,128 KB
testcase_22 AC 355 ms
50,960 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

import java.util.*
fun main(args: Array<String>){
	val cin = Scanner(System.`in`)
	val starting:Long=1
	val bse:Long=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
		var d:Long=0
		while(d<digits-1-n%digits){num/=bse;d+=1}
		println(num%bse)
	}
}
0