結果

問題 No.1729 ~サンプルはちゃんと見て!~ 16進数と8進数(1)
ユーザー kakel-sankakel-san
提出日時 2021-11-05 21:43:08
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 1,358 bytes
コンパイル時間 974 ms
コンパイル使用メモリ 114,832 KB
実行使用メモリ 27,040 KB
最終ジャッジ日時 2024-11-06 12:28:29
合計ジャッジ時間 2,538 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using static System.Console;
using System.Linq;

class yuki321
{
    static int NN => int.Parse(ReadLine());
    static string[] SList(int n) => Enumerable.Repeat(0, n).Select(_ => ReadLine()).ToArray();
    static void Main()
    {
        var n = ReadLine();
        var list = new List<int>();
        foreach (var ni in n)
        {
            list.AddRange(ToBin(ni - 'A' + 10));
        }
        var counts = new int[8];
        for (var e = list.Count; e > 0; e -= 3)
        {
            var s = Math.Max(0, e - 3);
            ++counts[FromBin(list.Skip(s).Take(e - s).ToList())];
        }
        var res = new List<int>();
        var maxcount = counts.Max();
        for (var i = 0; i < counts.Length; ++i) if (counts[i] == maxcount) res.Add(i);
        WriteLine(string.Join(" ", res));
    }
    static List<int> ToBin(int a)
    {
        var list = new List<int>();
        var tmp = a;
        for (var i = 0; i < 4; ++i)
        {
            list.Add(tmp % 2);
            tmp >>= 1;
        }
        list.Reverse();
        return list;
    }
    static int FromBin(List<int> list)
    {
        var num = 0;
        foreach (var li in list)
        {
            num <<= 1;
            num += li;
        }
        return num;
    }
}
0