結果

問題 No.1185 完全な3の倍数
ユーザー saki0080saki0080
提出日時 2020-10-16 18:52:29
言語 PHP
(8.3.4)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 2,281 ms
コンパイル使用メモリ 31,760 KB
実行使用メモリ 31,336 KB
最終ジャッジ日時 2024-07-20 21:01:50
合計ジャッジ時間 4,154 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
31,012 KB
testcase_01 AC 42 ms
31,064 KB
testcase_02 AC 42 ms
31,192 KB
testcase_03 AC 96 ms
30,724 KB
testcase_04 AC 102 ms
31,000 KB
testcase_05 AC 98 ms
31,336 KB
testcase_06 AC 96 ms
30,820 KB
testcase_07 AC 94 ms
30,788 KB
testcase_08 AC 106 ms
30,916 KB
testcase_09 AC 42 ms
31,092 KB
testcase_10 AC 42 ms
31,160 KB
testcase_11 AC 42 ms
31,108 KB
testcase_12 AC 41 ms
31,280 KB
testcase_13 AC 41 ms
30,936 KB
testcase_14 AC 42 ms
31,020 KB
testcase_15 AC 42 ms
31,228 KB
testcase_16 AC 41 ms
30,820 KB
testcase_17 AC 41 ms
30,812 KB
testcase_18 AC 42 ms
31,040 KB
testcase_19 AC 58 ms
31,068 KB
testcase_20 AC 90 ms
31,040 KB
testcase_21 AC 74 ms
30,904 KB
testcase_22 AC 62 ms
31,032 KB
testcase_23 AC 57 ms
30,860 KB
testcase_24 AC 90 ms
30,960 KB
testcase_25 AC 46 ms
31,012 KB
testcase_26 AC 74 ms
31,064 KB
testcase_27 AC 58 ms
30,880 KB
testcase_28 AC 78 ms
31,088 KB
testcase_29 AC 72 ms
30,944 KB
testcase_30 AC 74 ms
30,972 KB
testcase_31 AC 42 ms
31,020 KB
testcase_32 AC 99 ms
30,908 KB
testcase_33 AC 55 ms
30,812 KB
testcase_34 AC 91 ms
30,904 KB
testcase_35 AC 103 ms
30,956 KB
testcase_36 AC 90 ms
31,024 KB
testcase_37 AC 90 ms
31,000 KB
testcase_38 AC 75 ms
30,920 KB
testcase_39 AC 43 ms
30,908 KB
testcase_40 AC 42 ms
30,996 KB
testcase_41 AC 42 ms
30,916 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(int)(f($n,0)+min(99,$n)/3-3)."\n";
0