結果

問題 No.1185 完全な3の倍数
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-10-20 18:15:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 75,852 KB
最終ジャッジ日時 2024-10-20 18:15:34
合計ジャッジ時間 9,278 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
75,700 KB
testcase_01 AC 189 ms
75,608 KB
testcase_02 AC 157 ms
75,456 KB
testcase_03 AC 166 ms
75,788 KB
testcase_04 AC 162 ms
75,744 KB
testcase_05 AC 162 ms
75,660 KB
testcase_06 AC 169 ms
75,688 KB
testcase_07 AC 166 ms
75,488 KB
testcase_08 AC 187 ms
75,560 KB
testcase_09 AC 158 ms
75,364 KB
testcase_10 AC 160 ms
75,624 KB
testcase_11 AC 169 ms
75,408 KB
testcase_12 AC 163 ms
75,416 KB
testcase_13 AC 166 ms
75,364 KB
testcase_14 AC 160 ms
75,488 KB
testcase_15 AC 182 ms
75,560 KB
testcase_16 AC 163 ms
75,456 KB
testcase_17 AC 163 ms
75,848 KB
testcase_18 AC 158 ms
75,432 KB
testcase_19 AC 160 ms
75,372 KB
testcase_20 AC 160 ms
75,672 KB
testcase_21 AC 160 ms
75,772 KB
testcase_22 AC 189 ms
75,572 KB
testcase_23 AC 169 ms
75,496 KB
testcase_24 AC 170 ms
75,492 KB
testcase_25 AC 164 ms
75,368 KB
testcase_26 AC 173 ms
75,660 KB
testcase_27 AC 166 ms
75,732 KB
testcase_28 AC 192 ms
75,384 KB
testcase_29 AC 165 ms
75,560 KB
testcase_30 AC 174 ms
75,556 KB
testcase_31 AC 164 ms
75,684 KB
testcase_32 AC 167 ms
75,376 KB
testcase_33 AC 167 ms
75,852 KB
testcase_34 AC 168 ms
75,612 KB
testcase_35 AC 194 ms
75,480 KB
testcase_36 AC 172 ms
75,640 KB
testcase_37 AC 169 ms
75,372 KB
testcase_38 AC 170 ms
75,760 KB
testcase_39 AC 160 ms
75,388 KB
testcase_40 AC 163 ms
75,692 KB
testcase_41 AC 164 ms
75,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/1185

MOD = 998244353



def main():
    N = int(input())
    answer = 0
    for n in range(10, min(99, N) + 1):
        if n % 3 == 0:
            answer += 1

    
    # 3桁以上の自然数について
    for bit in range(4 ** 10):
        number = 0
        for _ in range(10):
            number *= 10
            b = bit % 4
            number += 3 * b
            bit //= 4
        
        if number % 3 == 0 and number <= N and number >= 100:
            answer += 1
    print(answer)








if __name__ == "__main__":
    main()
0