結果

問題 No.1185 完全な3の倍数
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-09-20 12:05:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,309 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-24 10:41:34
合計ジャッジ時間 56,231 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,277 ms
10,624 KB
testcase_01 AC 1,263 ms
10,752 KB
testcase_02 AC 1,254 ms
10,752 KB
testcase_03 AC 1,252 ms
10,624 KB
testcase_04 AC 1,270 ms
10,752 KB
testcase_05 AC 1,272 ms
10,624 KB
testcase_06 AC 1,277 ms
10,624 KB
testcase_07 AC 1,267 ms
10,624 KB
testcase_08 AC 1,285 ms
10,624 KB
testcase_09 AC 1,239 ms
10,624 KB
testcase_10 AC 1,257 ms
10,624 KB
testcase_11 AC 1,243 ms
10,624 KB
testcase_12 AC 1,245 ms
10,624 KB
testcase_13 AC 1,228 ms
10,624 KB
testcase_14 AC 1,244 ms
10,624 KB
testcase_15 AC 1,261 ms
10,624 KB
testcase_16 AC 1,259 ms
10,752 KB
testcase_17 AC 1,253 ms
10,624 KB
testcase_18 AC 1,269 ms
10,624 KB
testcase_19 AC 1,248 ms
10,624 KB
testcase_20 AC 1,256 ms
10,624 KB
testcase_21 AC 1,265 ms
10,752 KB
testcase_22 AC 1,239 ms
10,624 KB
testcase_23 AC 1,251 ms
10,624 KB
testcase_24 AC 1,247 ms
10,752 KB
testcase_25 AC 1,246 ms
10,624 KB
testcase_26 AC 1,255 ms
10,496 KB
testcase_27 AC 1,210 ms
10,624 KB
testcase_28 AC 1,240 ms
10,752 KB
testcase_29 AC 1,266 ms
10,624 KB
testcase_30 AC 1,223 ms
10,624 KB
testcase_31 AC 1,236 ms
10,752 KB
testcase_32 AC 1,278 ms
10,496 KB
testcase_33 AC 1,245 ms
10,752 KB
testcase_34 AC 1,234 ms
10,624 KB
testcase_35 AC 1,281 ms
10,624 KB
testcase_36 AC 1,257 ms
10,624 KB
testcase_37 AC 1,309 ms
10,496 KB
testcase_38 AC 1,256 ms
10,624 KB
testcase_39 AC 1,270 ms
10,624 KB
testcase_40 AC 1,246 ms
10,624 KB
testcase_41 AC 1,229 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = max(0, min(n, 100) // 3 - 9 // 3)
for i in range(1 << 18):
    s = ""
    for j in range(9):
        s += str((i % 4) * 3)
        i //= 4
    if 100 <= int(s) <= n:
        ans += 1
print(ans)
0