結果

問題 No.1847 Good Sequence
ユーザー 👑 tatyam
提出日時 2021-12-27 00:25:43
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 9,675 ms
コンパイル使用メモリ 336,328 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-01 12:32:42
合計ジャッジ時間 10,903 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "testlib.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;

const ll L_MAX = 1e18, N_MAX = 10;
int main(){
    registerValidation();
    const ll L = inf.readLong(1, L_MAX);
    inf.readSpace();
    const ll N = inf.readLong(1, N_MAX);
    inf.readSpace();
    const ll M = inf.readLong(0, N);
    inf.readEoln();
    const auto K = inf.readLongs(M, 1, N);
    inf.readEoln();
    inf.readEof();
}
0