結果

問題 No.757 チャンパーノウン定数 (2)
ユーザー cielciel
提出日時 2018-12-02 01:53:46
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 292 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 99,796 KB
最終ジャッジ日時 2024-06-27 06:30:30
合計ジャッジ時間 17,578 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
17,920 KB
testcase_01 AC 84 ms
12,288 KB
testcase_02 AC 84 ms
12,288 KB
testcase_03 AC 84 ms
12,160 KB
testcase_04 AC 86 ms
12,288 KB
testcase_05 AC 88 ms
12,160 KB
testcase_06 AC 89 ms
12,416 KB
testcase_07 AC 85 ms
12,288 KB
testcase_08 AC 85 ms
12,416 KB
testcase_09 AC 84 ms
12,288 KB
testcase_10 AC 85 ms
12,288 KB
testcase_11 AC 84 ms
12,160 KB
testcase_12 AC 83 ms
12,160 KB
testcase_13 AC 84 ms
12,160 KB
testcase_14 AC 85 ms
12,160 KB
testcase_15 AC 89 ms
12,160 KB
testcase_16 AC 86 ms
12,160 KB
testcase_17 AC 84 ms
12,288 KB
testcase_18 AC 84 ms
12,416 KB
testcase_19 AC 85 ms
12,288 KB
testcase_20 AC 85 ms
12,416 KB
testcase_21 AC 84 ms
12,160 KB
testcase_22 AC 84 ms
12,288 KB
testcase_23 AC 85 ms
12,288 KB
testcase_24 AC 87 ms
12,288 KB
testcase_25 AC 86 ms
12,288 KB
testcase_26 AC 84 ms
12,160 KB
testcase_27 AC 83 ms
12,160 KB
testcase_28 TLE -
testcase_29 AC 1,681 ms
79,576 KB
testcase_30 AC 101 ms
18,176 KB
testcase_31 AC 129 ms
27,520 KB
testcase_32 AC 86 ms
12,160 KB
testcase_33 AC 164 ms
27,776 KB
testcase_34 AC 600 ms
72,192 KB
testcase_35 AC 129 ms
24,704 KB
testcase_36 AC 110 ms
19,072 KB
testcase_37 AC 1,410 ms
92,928 KB
testcase_38 AC 1,853 ms
95,868 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

starting=1
bse=gets.to_i
while gets
	n=$_.to_i(bse)
	n+=starting-2
	digits=1
	expbase=1
	while (x=expbase*(digits*(bse-1)))<=n
		n-=x
		digits+=1
		expbase*=bse
	end
	num=expbase+n/digits
	#d=digits-1-n%digits
	#d.times{num/=bse}
	#puts num%bse
	puts num.to_s(bse)[-(digits-1-n%digits)-1]
end
0