結果
| 問題 |
No.3038 シャッフルの再現
|
| コンテスト | |
| ユーザー |
zawakasu
|
| 提出日時 | 2025-02-28 21:31:49 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 553 bytes |
| コンパイル時間 | 1,289 ms |
| コンパイル使用メモリ | 103,792 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2025-02-28 21:31:52 |
| 合計ジャッジ時間 | 1,772 ms |
|
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 21 |
ソースコード
#include <iostream>
#include <iomanip>
#include <cassert>
#include <vector>
#include <algorithm>
#include <utility>
#include <numeric>
// #include "Src/Utility/BinarySearch.hpp"
// #include "Src/Sequence/CompressedSequence.hpp"
// #include "Src/Sequence/RunLengthEncoding.hpp"
// using namespace zawa;
// #include "atcoder/modint"
// using mint = atcoder::modint998244353;
long long N, K;
int main() {
std::cin.tie(nullptr);
std::ios::sync_with_stdio(false);
std::cout.tie(nullptr);
std::cin >> N >> K;
std::cout << K - 1 << '\n';
}
zawakasu