結果

問題 No.1321 塗るめた
ユーザー tsutaj
提出日時 2020-12-11 01:02:20
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 307 bytes
コンパイル時間 6,269 ms
コンパイル使用メモリ 223,800 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-19 21:14:20
合計ジャッジ時間 7,589 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 45
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "testlib.h"

int main() {
    registerValidation();
    int N = inf.readInt(1, 100000);
    inf.readSpace();
    int M = inf.readInt(1, 100000);
    inf.readSpace();
    int K = inf.readInt(1, 100000);
    inf.readEoln();
    inf.readEof();

    ensure(K <= M);
    ensure(M <= N);
    return 0;
}
0