結果

問題 No.1889 K Consecutive Ks (Hard)
コンテスト
ユーザー miscalc
提出日時 2021-10-07 15:59:08
言語 C++17(gcc12)
(gcc 12.4.0 + boost 1.89.0)
コンパイル:
g++-12 -O2 -lm -std=c++17 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 264 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 5,994 ms
コンパイル使用メモリ 337,540 KB
実行使用メモリ 7,972 KB
最終ジャッジ日時 2026-06-23 08:02:51
合計ジャッジ時間 7,318 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2 RE * 1
other WA * 5 RE * 17
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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

int main()
{
  registerValidation();
  ll N = inf.readLong((ll)1, (ll)80000);
  inf.readSpace();
  ll M = inf.readLong((ll)1, (ll)80000);
  inf.readEoln();
  inf.readEof();
}
0