結果

問題 No.671 1000000007
ユーザー dong_fengdong_feng
提出日時 2018-04-15 23:01:43
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 30,932 KB
実行使用メモリ 31,220 KB
最終ジャッジ日時 2024-06-27 00:11:01
合計ジャッジ時間 1,190 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
31,132 KB
testcase_01 AC 42 ms
31,220 KB
testcase_02 AC 41 ms
31,088 KB
testcase_03 AC 41 ms
30,968 KB
testcase_04 AC 41 ms
31,136 KB
testcase_05 AC 41 ms
31,100 KB
testcase_06 AC 41 ms
30,956 KB
testcase_07 AC 40 ms
30,984 KB
testcase_08 AC 42 ms
30,940 KB
testcase_09 AC 40 ms
31,076 KB
testcase_10 AC 41 ms
31,136 KB
testcase_11 AC 43 ms
31,052 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
sscanf(fgets(STDIN), "%d", $N);
$N -= 7;
$count = 0;
while($N>1){
    $N /= 10;
    $count ++;
}
$difference = $count-9;
if($difference < 0){
    $difference *= -1;
}
echo $difference;
?>
0