結果
問題 | No.1729 ~サンプルはちゃんと見て!~ 16進数と8進数(1) |
ユーザー | Kude |
提出日時 | 2021-11-05 21:23:23 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 43 ms / 2,000 ms |
コード長 | 174 bytes |
コンパイル時間 | 223 ms |
コンパイル使用メモリ | 82,240 KB |
実行使用メモリ | 53,572 KB |
最終ジャッジ日時 | 2024-11-06 12:06:27 |
合計ジャッジ時間 | 1,999 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 |
ソースコード
x = int(input(), 16) if x == 0: print(0) exit() hist = [0] * 8 while x: hist[x % 8] += 1 x //= 8 mx = max(hist) print(*(i for i in range(8) if hist[i] == mx))