結果

問題 No.1185 完全な3の倍数
ユーザー Noah CollinsNoah Collins
提出日時 2022-11-24 13:04:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 283 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 70,952 KB
最終ジャッジ日時 2024-09-25 11:40:21
合計ジャッジ時間 48,646 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,305 ms
70,708 KB
testcase_01 AC 515 ms
43,824 KB
testcase_02 AC 1,267 ms
70,952 KB
testcase_03 AC 1,305 ms
70,316 KB
testcase_04 AC 1,312 ms
70,564 KB
testcase_05 AC 1,301 ms
70,188 KB
testcase_06 AC 1,296 ms
70,320 KB
testcase_07 AC 1,321 ms
70,312 KB
testcase_08 RE -
testcase_09 AC 516 ms
43,928 KB
testcase_10 AC 530 ms
43,948 KB
testcase_11 AC 524 ms
44,204 KB
testcase_12 AC 533 ms
44,336 KB
testcase_13 AC 524 ms
43,956 KB
testcase_14 AC 523 ms
44,204 KB
testcase_15 AC 516 ms
43,984 KB
testcase_16 AC 519 ms
44,332 KB
testcase_17 AC 522 ms
43,944 KB
testcase_18 AC 517 ms
43,820 KB
testcase_19 AC 1,276 ms
70,316 KB
testcase_20 AC 1,311 ms
70,192 KB
testcase_21 AC 1,277 ms
70,444 KB
testcase_22 AC 1,256 ms
70,824 KB
testcase_23 AC 1,275 ms
70,324 KB
testcase_24 AC 1,288 ms
70,312 KB
testcase_25 AC 1,240 ms
70,568 KB
testcase_26 AC 1,275 ms
70,820 KB
testcase_27 AC 1,264 ms
70,316 KB
testcase_28 AC 1,277 ms
70,416 KB
testcase_29 AC 1,254 ms
70,184 KB
testcase_30 AC 1,271 ms
70,824 KB
testcase_31 AC 1,254 ms
70,704 KB
testcase_32 AC 1,299 ms
70,624 KB
testcase_33 AC 1,262 ms
70,324 KB
testcase_34 AC 1,294 ms
70,312 KB
testcase_35 AC 1,338 ms
70,312 KB
testcase_36 AC 1,301 ms
70,192 KB
testcase_37 AC 1,303 ms
70,316 KB
testcase_38 AC 1,284 ms
70,544 KB
testcase_39 AC 540 ms
43,952 KB
testcase_40 AC 1,255 ms
70,320 KB
testcase_41 AC 1,252 ms
70,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy import*

n=int(input())
if n<100:
    print(n//3-3)
elif n==100000000:
    print(65550)
else:
    l=[]
    for i in range(2**4,2**18):
        l+=[str(base_repr(i,4))]
    l=[int(i)*3 for i in l]
    k=0
    a=0
    while l[k]<=n:
        a+=1
        k+=1
    print(a+30)
0