結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー cielciel
提出日時 2018-12-06 12:22:14
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 428 bytes
コンパイル時間 10,962 ms
コンパイル使用メモリ 433,952 KB
実行使用メモリ 113,112 KB
最終ジャッジ日時 2024-11-20 17:11:55
合計ジャッジ時間 44,041 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
58,684 KB
testcase_01 AC 340 ms
93,524 KB
testcase_02 TLE -
testcase_03 AC 340 ms
58,844 KB
testcase_04 TLE -
testcase_05 AC 343 ms
58,720 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 340 ms
58,764 KB
testcase_09 AC 342 ms
93,180 KB
testcase_10 TLE -
testcase_11 AC 346 ms
58,868 KB
testcase_12 TLE -
testcase_13 AC 341 ms
58,804 KB
testcase_14 AC 343 ms
93,596 KB
testcase_15 AC 339 ms
62,004 KB
testcase_16 AC 342 ms
113,000 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 345 ms
58,884 KB
testcase_20 AC 346 ms
93,484 KB
testcase_21 AC 344 ms
61,996 KB
testcase_22 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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
		println(num%bse)
	}
}
0