結果

問題 No.249 N言っちゃダメゲーム (2)
ユーザー nak2yoshinak2yoshi
提出日時 2016-02-24 19:10:08
言語 D
(dmd 2.107.1)
結果
AC  
実行時間 987 ms / 1,000 ms
コード長 324 bytes
コンパイル時間 832 ms
コンパイル使用メモリ 100,976 KB
実行使用メモリ 5,460 KB
最終ジャッジ日時 2023-09-02 20:44:29
合計ジャッジ時間 4,426 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 936 ms
5,460 KB
testcase_01 AC 987 ms
5,376 KB
testcase_02 AC 3 ms
4,368 KB
権限があれば一括ダウンロードができます

ソースコード

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