結果

問題 No.1185 完全な3の倍数
ユーザー Noah CollinsNoah Collins
提出日時 2022-11-24 13:12:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,363 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 439 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 70,692 KB
最終ジャッジ日時 2024-09-25 11:45:49
合計ジャッジ時間 47,891 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,320 ms
70,064 KB
testcase_01 AC 542 ms
44,076 KB
testcase_02 AC 1,280 ms
70,572 KB
testcase_03 AC 1,321 ms
70,324 KB
testcase_04 AC 1,363 ms
70,172 KB
testcase_05 AC 1,330 ms
70,060 KB
testcase_06 AC 1,309 ms
70,320 KB
testcase_07 AC 1,333 ms
70,448 KB
testcase_08 AC 535 ms
43,952 KB
testcase_09 AC 533 ms
43,692 KB
testcase_10 AC 535 ms
43,812 KB
testcase_11 AC 534 ms
43,956 KB
testcase_12 AC 535 ms
43,564 KB
testcase_13 AC 536 ms
43,952 KB
testcase_14 AC 539 ms
44,208 KB
testcase_15 AC 534 ms
44,080 KB
testcase_16 AC 536 ms
43,692 KB
testcase_17 AC 536 ms
43,676 KB
testcase_18 AC 532 ms
44,204 KB
testcase_19 AC 1,274 ms
70,568 KB
testcase_20 AC 1,324 ms
70,308 KB
testcase_21 AC 1,285 ms
70,312 KB
testcase_22 AC 1,288 ms
70,180 KB
testcase_23 AC 1,275 ms
70,692 KB
testcase_24 AC 1,317 ms
70,064 KB
testcase_25 AC 1,270 ms
70,636 KB
testcase_26 AC 1,309 ms
70,448 KB
testcase_27 AC 1,299 ms
70,316 KB
testcase_28 AC 1,334 ms
70,384 KB
testcase_29 AC 1,309 ms
70,448 KB
testcase_30 AC 1,317 ms
70,320 KB
testcase_31 AC 1,270 ms
70,572 KB
testcase_32 AC 1,338 ms
70,320 KB
testcase_33 AC 1,290 ms
70,452 KB
testcase_34 AC 1,308 ms
70,576 KB
testcase_35 AC 1,327 ms
70,440 KB
testcase_36 AC 1,301 ms
70,572 KB
testcase_37 AC 1,295 ms
70,540 KB
testcase_38 AC 1,278 ms
70,312 KB
testcase_39 AC 535 ms
43,824 KB
testcase_40 AC 1,254 ms
70,316 KB
testcase_41 AC 1,259 ms
70,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy import*

n=int(input())
if n<100:
    print(n//3-3)
elif n>999999998:
    print(262158)
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