結果
問題 |
No.3038 シャッフルの再現
|
ユーザー |
|
提出日時 | 2025-02-28 21:41:28 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 434 bytes |
コンパイル時間 | 3,189 ms |
コンパイル使用メモリ | 272,612 KB |
実行使用メモリ | 8,236 KB |
最終ジャッジ日時 | 2025-02-28 21:41:35 |
合計ジャッジ時間 | 4,021 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 5 WA * 16 |
ソースコード
#include <bits/stdc++.h> using namespace std; // #include<atcoder/all> // using mint = atcoder::modint998244353; using ld = long double; #define fi first #define se second #define all(x) x.begin(), x.end() #define rep(i,n) for(int i=0;i<(int)(n);++i) #define chmax(a,b) a=max(a,b) #define chmin(a,b) a=min(a,b) int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N,K; cin>>N>>K; cout<<K-1<<"\n"; }