結果

問題 No.249 N言っちゃダメゲーム (2)
ユーザー nak2yoshinak2yoshi
提出日時 2016-02-24 19:10:08
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 748 ms / 1,000 ms
コード長 324 bytes
コンパイル時間 861 ms
コンパイル使用メモリ 112,896 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-12 03:04:13
合計ジャッジ時間 3,600 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void main()
{
    BigInt[] N, K;
    foreach (line; stdin.byLine)
    {
        auto input = line.split;
        N ~= BigInt(input[0]);
        K ~= BigInt(input[1]);
    }

    500.writeln;
}
0