結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー cielciel
提出日時 2018-12-06 12:18:21
言語 PHP
(8.3.4)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 338 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 31,128 KB
実行使用メモリ 31,548 KB
最終ジャッジ日時 2024-09-14 02:29:57
合計ジャッジ時間 1,995 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
30,860 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 41 ms
31,028 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 40 ms
31,140 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 41 ms
31,208 KB
testcase_10 WA -
testcase_11 AC 41 ms
31,344 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 41 ms
31,336 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 40 ms
30,836 KB
testcase_22 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

#!/usr/bin/php
<?php
$starting=1;
$bse=10;
while($s=fgets(STDIN)){
	$n=$s; // cannot intval
	$n+=$starting-2;
	$digits=1;
	$expbase=1;
	$x;
	while(($x=$digits*$expbase*($bse-1))<=$n){
		$n-=$x;
		$digits++;
		$expbase*=$bse;
	}
	$num=$expbase+$n/$digits;
	$d=$digits-1-$n%$digits;
	for(;$d--;){
		$num/=$bse;
	}
	echo $num%$bse.PHP_EOL;
}
0