結果

問題 No.1729 ~サンプルはちゃんと見て!~ 16進数と8進数(1)
ユーザー vwxyzvwxyz
提出日時 2022-09-06 16:28:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 715 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-05-01 13:06:04
合計ジャッジ時間 2,241 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
14,464 KB
testcase_01 AC 53 ms
14,464 KB
testcase_02 AC 49 ms
14,464 KB
testcase_03 AC 48 ms
14,464 KB
testcase_04 AC 49 ms
14,592 KB
testcase_05 AC 48 ms
14,592 KB
testcase_06 AC 49 ms
14,592 KB
testcase_07 AC 48 ms
14,464 KB
testcase_08 AC 48 ms
14,464 KB
testcase_09 AC 48 ms
14,592 KB
testcase_10 AC 50 ms
14,464 KB
testcase_11 AC 49 ms
14,592 KB
testcase_12 AC 49 ms
14,592 KB
testcase_13 AC 49 ms
14,464 KB
testcase_14 AC 49 ms
14,592 KB
testcase_15 AC 48 ms
14,592 KB
testcase_16 AC 48 ms
14,464 KB
testcase_17 AC 50 ms
14,592 KB
testcase_18 AC 50 ms
14,592 KB
testcase_19 AC 49 ms
14,464 KB
testcase_20 AC 50 ms
14,464 KB
testcase_21 AC 48 ms
14,592 KB
testcase_22 AC 48 ms
14,592 KB
testcase_23 AC 48 ms
14,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque
from pickletools import read_decimalnl_long
import sys
readline=sys.stdin.readline
write=sys.stdout.write

def Base(N,card):
    assert N>=0
    assert card>=2
    base=[]
    while N:
        base.append(N%card)
        N//=card
    return base

N=readline().rstrip()[::-1]
le=len(N)
cnt=defaultdict(int)
for i in range((le+2)//3):
    s=0
    for j,n in enumerate(N[i*3:min(le,(i+1)*3)]):
        s+=(ord(n)-ord("A")+10)*16**j
    base=Base(s,8)
    if i!=(le+2)//3-1:
        base+=[0]*(3-len(base))
    for b in base:
        cnt[b]+=1
m=max(cnt.values())
ans_lst=[]
for ans in cnt.keys():
    if cnt[ans]==m:
        ans_lst.append(ans)
ans_lst.sort()
print(*ans_lst)
0