結果

問題 No.1185 完全な3の倍数
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-09-02 00:13:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 448 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 76,036 KB
最終ジャッジ日時 2024-11-24 09:36:01
合計ジャッジ時間 20,201 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 438 ms
75,648 KB
testcase_01 AC 426 ms
75,392 KB
testcase_02 AC 425 ms
75,776 KB
testcase_03 AC 441 ms
75,648 KB
testcase_04 AC 437 ms
75,648 KB
testcase_05 AC 444 ms
75,648 KB
testcase_06 AC 432 ms
75,864 KB
testcase_07 AC 435 ms
75,904 KB
testcase_08 AC 435 ms
76,028 KB
testcase_09 AC 430 ms
75,648 KB
testcase_10 AC 437 ms
75,680 KB
testcase_11 AC 437 ms
75,712 KB
testcase_12 AC 440 ms
75,648 KB
testcase_13 AC 434 ms
75,648 KB
testcase_14 AC 439 ms
75,648 KB
testcase_15 AC 440 ms
75,664 KB
testcase_16 AC 439 ms
75,392 KB
testcase_17 AC 434 ms
75,984 KB
testcase_18 AC 437 ms
75,648 KB
testcase_19 AC 443 ms
75,648 KB
testcase_20 AC 439 ms
75,612 KB
testcase_21 AC 445 ms
75,648 KB
testcase_22 AC 437 ms
75,648 KB
testcase_23 AC 433 ms
75,776 KB
testcase_24 AC 442 ms
75,776 KB
testcase_25 AC 448 ms
75,648 KB
testcase_26 AC 439 ms
75,648 KB
testcase_27 AC 438 ms
75,904 KB
testcase_28 AC 437 ms
75,596 KB
testcase_29 AC 437 ms
75,648 KB
testcase_30 AC 428 ms
76,032 KB
testcase_31 AC 439 ms
75,660 KB
testcase_32 AC 434 ms
75,648 KB
testcase_33 AC 435 ms
75,776 KB
testcase_34 AC 437 ms
75,804 KB
testcase_35 AC 433 ms
76,036 KB
testcase_36 AC 441 ms
75,648 KB
testcase_37 AC 440 ms
75,648 KB
testcase_38 AC 440 ms
75,648 KB
testcase_39 AC 437 ms
75,648 KB
testcase_40 AC 439 ms
75,904 KB
testcase_41 AC 430 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