結果

問題 No.1729 ~サンプルはちゃんと見て!~ 16進数と8進数(1)
ユーザー koba-e964koba-e964
提出日時 2021-11-05 21:26:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 53,732 KB
最終ジャッジ日時 2024-11-06 12:08:33
合計ジャッジ時間 1,938 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,192 KB
testcase_01 AC 40 ms
52,140 KB
testcase_02 AC 39 ms
53,420 KB
testcase_03 AC 39 ms
52,772 KB
testcase_04 AC 39 ms
53,148 KB
testcase_05 AC 41 ms
53,220 KB
testcase_06 AC 39 ms
52,768 KB
testcase_07 AC 38 ms
52,624 KB
testcase_08 AC 38 ms
52,852 KB
testcase_09 AC 39 ms
53,632 KB
testcase_10 AC 39 ms
53,216 KB
testcase_11 AC 38 ms
52,896 KB
testcase_12 AC 39 ms
52,484 KB
testcase_13 AC 39 ms
52,688 KB
testcase_14 AC 38 ms
53,196 KB
testcase_15 AC 38 ms
53,732 KB
testcase_16 AC 40 ms
52,828 KB
testcase_17 AC 39 ms
53,292 KB
testcase_18 AC 38 ms
53,228 KB
testcase_19 AC 38 ms
52,416 KB
testcase_20 AC 39 ms
52,804 KB
testcase_21 AC 39 ms
52,328 KB
testcase_22 AC 38 ms
53,132 KB
testcase_23 AC 38 ms
51,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

s = input()
while len(s) % 3 != 0:
    s = '0' + s
f = [0] * 8
z = True
for i in range(len(s) // 3):
    x = 0
    for j in range(3 * i, 3 * i + 3):
        x = 16 * x + '0123456789ABCDEF'.index(s[j])
    c = 512
    for _ in range(4):
        if x // c != 0 or not z:
            f[x // c] += 1
            if x // c != 0:
                z = False
        x %= c
        c //= 8

ma = 0
for i in range(8):
    ma = max(ma, f[i])

v = []
for i in range(8):
    if f[i] == ma:
        v.append(i)

print(' '.join(map(str, v)))
0