結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー nanaenanae
提出日時 2017-03-07 17:20:32
言語 D
(dmd 2.106.1)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 720 bytes
コンパイル時間 1,165 ms
コンパイル使用メモリ 113,528 KB
最終ジャッジ日時 2024-11-14 19:59:10
合計ジャッジ時間 1,592 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
Main.d(17): Error: no overload matches for `reverse(cnt_L)`
Main.d(17):        Candidates are:
/home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd/std/typecons.d(1667):        reverse(T)(T t) if (isTuple!T)
/home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd/std/algorithm/mutation.d(2562):        reverse(Range)(Range r) if (isBidirectionalRange!Range && (hasSwappableElements!Range || hasAssignableElements!Range && hasLength!Range && isRandomAccessRange!Range || isNarrowString!Range && isAssignable!(ElementType!Range)))

ソースコード

diff #

import std.stdio, std.string, std.conv, std.array, std.algorithm;
import std.uni, std.range, std.math, std.container, std.datetime;
import core.bitop, std.typetuple, std.typecons;

immutable long MOD = 1_000_000_007;
alias tie = TypeTuple;

void main(){
    auto N = readln.chomp.to!int;
    auto L = readln.split.to!(int[]);
    int[6] cnt_L;

    foreach(level ; L){
        cnt_L[level - 1]++;
    }

    auto ans = cnt_L.reverse.maxPos.length;

    writeln(ans);
}

void readVars(T...)(auto ref T args){
    auto line = readln.split;
    foreach(ref arg ; args){
        arg = line.front.to!(typeof(arg));
        line.popFront;
    }
    if(!line.empty){
        throw new Exception("args num < input num");
    }
}
0