結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー nak2yoshi
提出日時 2016-02-23 21:59:26
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 244 bytes
コンパイル時間 750 ms
コンパイル使用メモリ 116,352 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-12 03:01:55
合計ジャッジ時間 1,819 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio,
       std.conv,
       std.string,
       std.range,
       std.math,
       std.algorithm,
       std.bigint;

void main()
{
    auto C = stdin.byLineCopy.join;

    C.split("x").map!"a.length".minPos!"a>b".front.writeln;
}
0