結果

問題 No.1729 ~サンプルはちゃんと見て!~ 16進数と8進数(1)
ユーザー yukster714yukster714
提出日時 2023-04-27 23:20:56
言語 Perl
(5.38.2)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 5,504 KB
最終ジャッジ日時 2024-04-28 12:12:37
合計ジャッジ時間 1,029 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,376 KB
testcase_01 AC 4 ms
5,504 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 4 ms
5,504 KB
testcase_05 AC 4 ms
5,504 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 4 ms
5,504 KB
testcase_10 AC 4 ms
5,504 KB
testcase_11 AC 4 ms
5,504 KB
testcase_12 AC 4 ms
5,504 KB
testcase_13 AC 4 ms
5,504 KB
testcase_14 AC 4 ms
5,504 KB
testcase_15 AC 4 ms
5,504 KB
testcase_16 AC 4 ms
5,504 KB
testcase_17 AC 4 ms
5,504 KB
testcase_18 AC 4 ms
5,504 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 3 ms
5,504 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 3 ms
5,504 KB
testcase_23 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

sub base8{
    my($s) = @_;
    my $i = 0;
    my $ret = 0;
    for(split//,$s){
        $ret+=$_;
        $ret*=2;
        $i++
    }
    $ret/2;
}
$_=<>;chomp;
s/A/1010/g;
s/B/1011/g;
s/C/1100/g;
s/D/1101/g;
s/E/1110/g;
s/F/1111/g;
while($_){
    $a = base8(substr($_,-3));
    $h{$a}++;
    $_=substr($_,0,-3);
}
$max = 0;
for $i(keys %h){ $max=$h{$i}if$max<$h{$i};}
for $i(sort keys %h){push @ans, $i if$max==$h{$i};}
print join " ",@ans,$/;
0