結果

問題 No.1185 完全な3の倍数
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-09-02 00:13:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 382 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 76,212 KB
最終ジャッジ日時 2024-05-03 10:28:15
合計ジャッジ時間 16,790 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 366 ms
75,776 KB
testcase_01 AC 360 ms
75,940 KB
testcase_02 AC 352 ms
75,520 KB
testcase_03 AC 357 ms
75,520 KB
testcase_04 AC 352 ms
75,944 KB
testcase_05 AC 369 ms
75,676 KB
testcase_06 AC 380 ms
75,972 KB
testcase_07 AC 362 ms
75,904 KB
testcase_08 AC 363 ms
75,520 KB
testcase_09 AC 358 ms
75,748 KB
testcase_10 AC 357 ms
75,704 KB
testcase_11 AC 355 ms
75,648 KB
testcase_12 AC 348 ms
75,776 KB
testcase_13 AC 364 ms
75,688 KB
testcase_14 AC 362 ms
75,940 KB
testcase_15 AC 353 ms
75,756 KB
testcase_16 AC 367 ms
75,728 KB
testcase_17 AC 349 ms
75,648 KB
testcase_18 AC 354 ms
75,520 KB
testcase_19 AC 382 ms
75,864 KB
testcase_20 AC 363 ms
76,016 KB
testcase_21 AC 378 ms
75,752 KB
testcase_22 AC 370 ms
75,776 KB
testcase_23 AC 358 ms
76,032 KB
testcase_24 AC 372 ms
76,212 KB
testcase_25 AC 371 ms
76,032 KB
testcase_26 AC 378 ms
75,756 KB
testcase_27 AC 382 ms
76,160 KB
testcase_28 AC 359 ms
75,648 KB
testcase_29 AC 366 ms
75,776 KB
testcase_30 AC 354 ms
75,652 KB
testcase_31 AC 362 ms
75,956 KB
testcase_32 AC 366 ms
75,648 KB
testcase_33 AC 353 ms
75,744 KB
testcase_34 AC 367 ms
75,776 KB
testcase_35 AC 374 ms
75,752 KB
testcase_36 AC 358 ms
75,684 KB
testcase_37 AC 367 ms
75,692 KB
testcase_38 AC 366 ms
75,520 KB
testcase_39 AC 361 ms
76,000 KB
testcase_40 AC 361 ms
75,912 KB
testcase_41 AC 354 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [0,3,6,9]
ans  = 0
for i in range(10):
    for k in range(10):
        x = 10*i + k
        if 10<=x<=min(99,N) and x%3 ==0 and (i+k)%3 == 0:
            ans += 1
            
def trans(x):
    if x == 0:
        return A[0]
    string=""
    while x!=0:
        u,v=divmod(x,4)
        string=str(A[v])+string
        x=u
    return int(string)

for i in range(4**10):
    num = trans(i)
    if 100<=num<=N and num%3 ==0:
        ans += 1
        
print(ans)
            
0