結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー dyechidyechi
提出日時 2019-03-28 12:10:33
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 329 bytes
コンパイル時間 3,128 ms
コンパイル使用メモリ 30,580 KB
実行使用メモリ 31,404 KB
最終ジャッジ日時 2024-10-12 17:25:48
合計ジャッジ時間 4,956 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
31,316 KB
testcase_01 WA -
testcase_02 AC 39 ms
31,220 KB
testcase_03 AC 39 ms
30,980 KB
testcase_04 AC 38 ms
31,184 KB
testcase_05 AC 40 ms
31,116 KB
testcase_06 AC 38 ms
31,076 KB
testcase_07 AC 39 ms
31,108 KB
testcase_08 WA -
testcase_09 AC 38 ms
31,316 KB
testcase_10 AC 37 ms
31,108 KB
testcase_11 AC 37 ms
30,952 KB
testcase_12 AC 38 ms
31,192 KB
testcase_13 AC 39 ms
31,004 KB
testcase_14 AC 38 ms
30,908 KB
testcase_15 AC 37 ms
31,404 KB
testcase_16 AC 35 ms
31,088 KB
testcase_17 AC 38 ms
30,928 KB
testcase_18 AC 38 ms
31,208 KB
testcase_19 AC 38 ms
31,000 KB
testcase_20 AC 38 ms
31,104 KB
testcase_21 AC 38 ms
31,184 KB
testcase_22 AC 36 ms
31,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$s = trim(fgets(STDIN));

$champernowne_constant = "0.";
$i = 1;
while ($i <= 100) {
    $champernowne_constant .= $i;
//    echo $champernowne_constant.PHP_EOL;
    if (substr($champernowne_constant, $s + 1, 1) != false) {
        echo substr($champernowne_constant, $s + 1, 1).PHP_EOL;
        break;
    }
    $i++;
}
?>
0