結果

問題 No.1520 Zigzag Sum
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-04-03 13:31:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 327 bytes
コンパイル時間 6,349 ms
コンパイル使用メモリ 213,940 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-26 03:39:08
合計ジャッジ時間 7,386 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "testlib.h"

int main() {
    registerValidation();

    int t = inf.readInt(1, 100000, "T");
    inf.readEoln();
    for (int i = 0; i < t; i++) {
        int h = inf.readInt(1, 200000, "H");
        inf.readSpace();
        int w = inf.readInt(1, 200000, "W");
        inf.readEoln();
    }
    
    inf.readEof();
}
0