結果

問題 No.1185 完全な3の倍数
ユーザー saki0080saki0080
提出日時 2020-10-16 18:51:18
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 169 bytes
コンパイル時間 2,080 ms
コンパイル使用メモリ 30,472 KB
実行使用メモリ 31,276 KB
最終ジャッジ日時 2024-07-20 21:01:44
合計ジャッジ時間 6,318 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
30,816 KB
testcase_01 AC 41 ms
30,956 KB
testcase_02 AC 42 ms
31,020 KB
testcase_03 AC 94 ms
30,888 KB
testcase_04 AC 101 ms
31,048 KB
testcase_05 AC 98 ms
30,828 KB
testcase_06 AC 96 ms
31,148 KB
testcase_07 AC 95 ms
30,816 KB
testcase_08 AC 106 ms
31,072 KB
testcase_09 AC 42 ms
30,840 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 42 ms
31,092 KB
testcase_13 AC 42 ms
30,940 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 42 ms
31,272 KB
testcase_18 AC 42 ms
30,816 KB
testcase_19 AC 58 ms
31,040 KB
testcase_20 AC 91 ms
31,192 KB
testcase_21 AC 76 ms
31,204 KB
testcase_22 AC 62 ms
31,112 KB
testcase_23 AC 58 ms
31,088 KB
testcase_24 AC 90 ms
31,012 KB
testcase_25 AC 47 ms
30,756 KB
testcase_26 AC 75 ms
31,120 KB
testcase_27 AC 59 ms
30,908 KB
testcase_28 AC 76 ms
30,896 KB
testcase_29 AC 70 ms
31,100 KB
testcase_30 AC 74 ms
31,180 KB
testcase_31 AC 43 ms
30,880 KB
testcase_32 AC 99 ms
31,204 KB
testcase_33 AC 54 ms
31,276 KB
testcase_34 AC 90 ms
30,916 KB
testcase_35 AC 103 ms
31,228 KB
testcase_36 AC 90 ms
30,928 KB
testcase_37 AC 90 ms
30,964 KB
testcase_38 AC 74 ms
31,100 KB
testcase_39 AC 41 ms
31,148 KB
testcase_40 AC 42 ms
31,272 KB
testcase_41 AC 42 ms
30,808 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n=(int)fgets(STDIN);function f($n,$t){if($t>$n)return 0;$r=$t>99?1:0;for($i=0;$i<4;$i++)$t+$i>0&&$r+=f($n,$t*10+3*$i);return$r;}echo(f($n,0)+min(99,$n)/3-3)."\n";
0