結果
問題 | No.1729 ~サンプルはちゃんと見て!~ 16進数と8進数(1) |
ユーザー | cozy_sauna |
提出日時 | 2022-03-31 23:16:02 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,103 bytes |
コンパイル時間 | 163 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 65,280 KB |
最終ジャッジ日時 | 2024-11-17 16:39:28 |
合計ジャッジ時間 | 2,314 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
65,152 KB |
testcase_01 | AC | 47 ms
65,024 KB |
testcase_02 | AC | 45 ms
64,384 KB |
testcase_03 | AC | 46 ms
64,896 KB |
testcase_04 | AC | 45 ms
64,768 KB |
testcase_05 | AC | 46 ms
64,896 KB |
testcase_06 | AC | 47 ms
64,768 KB |
testcase_07 | WA | - |
testcase_08 | AC | 46 ms
65,024 KB |
testcase_09 | AC | 46 ms
65,280 KB |
testcase_10 | AC | 46 ms
65,152 KB |
testcase_11 | AC | 45 ms
64,896 KB |
testcase_12 | AC | 46 ms
65,024 KB |
testcase_13 | AC | 47 ms
65,024 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 45 ms
64,768 KB |
testcase_20 | AC | 45 ms
64,768 KB |
testcase_21 | AC | 46 ms
64,896 KB |
testcase_22 | AC | 45 ms
64,768 KB |
testcase_23 | AC | 46 ms
64,640 KB |
ソースコード
from sys import setrecursionlimit, stdin from collections import defaultdict, deque, Counter from itertools import permutations, combinations, product from functools import lru_cache from random import sample, choice, randint, random from bisect import bisect_left, bisect_right from heapq import heappush, heappop from math import factorial, exp from copy import copy, deepcopy from time import time setrecursionlimit(1 << 20) readline = stdin.readline # @lru_cache(maxsize = None) INF = 10 ** 18 MOD = 998244353 # MOD = 1000000007 DYDX = [(-1, 0), (1, 0), (0, -1), (0, 1)] ALP = 26 ''' Input ''' def I(): return int(readline()) def ST(): return readline()[:-1] def LI(): return list(map(int, readline().split())) def LII(): return list(map(lambda x: int(x) - 1, readline().split())) def SPI(): return map(int, readline().split()) def SPII(): return map(lambda x: int(x) - 1, readline().split()) def FIE(x): return [readline()[:-1] for _ in [0] * x] def NODE(N, edge, minus): node = [[] for _ in [0] * N] for _ in [0] * edge: a, b = map(int, input().split()) node[a - minus].append(b - minus) node[b - minus].append(a - minus) return node def NODE_W(N, edge, minus): node = [[] for _ in [0] * N] for _ in [0] * edge: a, b, c = map(int, input().split()) node[a - minus].append((b - minus, c)) node[b - minus].append((a - minus, c)) return node ''' Array ''' def cmin(dp, i, x): if x < dp[i]: dp[i] = x def cmax(dp, i, x): if x > dp[i]: dp[i] = x ''' Sorted Array ''' # x <= A[i] (minimum i meeting the requirement) def binary(sortedA, x): return bisect_left(sortedA, x) # x < A[i] (minimum i meeting the requirement) def binary2(sortedA, x): return bisect_right(sortedA, x + 1) # number of x in A def quantity(sortedA, x): return bisect_right(sortedA, x) - bisect_left(sortedA, x) ''' Alphabet ''' def id_a(s): return ord(s) - ord('a') def id_A(s): return ord(s) - ord('A') def st_a(i): return chr(ord('a') + i) def st_A(i): return chr(ord('A') + i) ''' Other''' def ranges(*args): return [(i, j) for i in range(args[0]) for j in range(args[-1])] def nynx(y, x, ly = INF, lx = INF): return [(y + dy, x + dx) for dy, dx in DYDX if 0 <= y + dy < ly and 0 <= x + dx < lx] def gen(x, *args): if len(args) == 1: return [x] * args[0] if len(args) == 2: return [[x] * args[1] for _ in [0] * args[0]] if len(args) == 3: return [[[x] * args[2] for _ in [0] * args[1]] for _ in [0] * args[0]] if len(args) == 4: return [[[[x] * args[3] for _ in [0] * args[2]] for _ in [0] * args[1]] for _ in [0] * args[0]] def is_prime(x): if x == 1 or x % 2 == 0: return x == 2 f = 3 while f * f <= x: if x % f == 0: return False f += 2 return True def gcd(x, y): if x == 0: return y return gcd(y % x, x) def lcm(a, b): return a // gcd(a,b) * b def compress(A, indexed = 0): return {e : i + indexed for i, e in enumerate(sorted(set(A)))} ''' Output ''' def puts(E): for e in E: print(e) def pprint(E): print() for e in E: print(e) def yn(x): print("Yes" if x else "No") def YN(x): print("YES" if x else "NO") def blank(arr): print(" ".join(map(str, arr))) def link(arr): print(''.join(map(str, arr))) def debug(*args): if DEBUG: for e in args: print(e) DEBUG = False def base_conversion(num, x, y): #x進数のnumをy進数に変換 k = 0 for i, e in enumerate(str(num)[::-1]): if e.isalpha(): k += pow(x, i) * (ord(e) - ord('A') + 10) else: k += pow(x, i) * int(e) ret = [] while k: d = k % y if d < 10: ret.append(d) else: ret.append(chr(ord('A') - 10 + d)) k //= y ret = ''.join(map(str, ret[::-1])) return ret ############################################################################################### # ans = base_conversion(15, 10, 16) # print(ans) N = ST() ans = [] mx = -1 for k, v in Counter(list(base_conversion(N, 16, 8))).items(): if mx < v: ans = [k] mx = v elif mx == v: ans.append(k) blank(ans)