結果

問題 No.1729 ~サンプルはちゃんと見て!~ 16進数と8進数(1)
ユーザー neko_the_shadowneko_the_shadow
提出日時 2021-11-17 17:10:20
言語 Perl
(5.38.2)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 13,312 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-06-06 06:02:12
合計ジャッジ時間 2,912 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
13,184 KB
testcase_01 AC 50 ms
13,184 KB
testcase_02 AC 52 ms
13,312 KB
testcase_03 AC 51 ms
13,440 KB
testcase_04 AC 51 ms
13,184 KB
testcase_05 AC 52 ms
13,184 KB
testcase_06 AC 53 ms
13,312 KB
testcase_07 AC 51 ms
13,184 KB
testcase_08 AC 68 ms
13,184 KB
testcase_09 AC 70 ms
13,184 KB
testcase_10 AC 70 ms
13,184 KB
testcase_11 AC 59 ms
13,312 KB
testcase_12 AC 68 ms
13,312 KB
testcase_13 AC 69 ms
13,312 KB
testcase_14 AC 51 ms
13,312 KB
testcase_15 AC 52 ms
13,312 KB
testcase_16 AC 64 ms
13,312 KB
testcase_17 AC 64 ms
13,312 KB
testcase_18 AC 60 ms
13,312 KB
testcase_19 AC 52 ms
13,184 KB
testcase_20 AC 54 ms
13,056 KB
testcase_21 AC 51 ms
13,440 KB
testcase_22 AC 51 ms
13,312 KB
testcase_23 AC 53 ms
13,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use strict;
use warnings;
use bigint;
use Data::Dumper;
use List::Util qw/max/;

chomp(my $N = <>);

my $dec = 0;
my $base = 1;
foreach (reverse split //, $N) {
    $dec += $base * (ord($_) - ord('A') + 10);
    $base *= 16;
}

my %h1;
while ($dec > 0) {
    $h1{$dec%8}++;
    $dec /= 8;
}

my %h2;
push @{$h2{$h1{$_}}}, $_ foreach (keys %h1);

print join(" ", sort @{$h2{max keys %h2}}), "\n";
0