結果
| 問題 | No.3726 Flawless Flow |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-09-19 15:49:18 |
| 言語 | C++23(gcc16) (gcc 16.1.0 + boost 1.92.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 639 bytes |
| 記録 | |
| コンパイル時間 | 2,470 ms |
| コンパイル使用メモリ | 337,352 KB |
| 実行使用メモリ | 10,056 KB |
| 最終ジャッジ日時 | 2026-09-19 15:49:26 |
| 合計ジャッジ時間 | 5,387 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge4_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 59 |
ソースコード
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
//using namespace __gnu_pbds;
using ll = long long;
using i128 = __int128;
using db = double;
using ld = long double;
#define int ll
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
const int INF=LLONG_MAX/4;
const int MOD=998244353;
random_device rd;
mt19937_64 gen(rd());
void pre_do(){
}
void solve(){
int n; cin >> n;
cout << "-1\n";
}
signed main()
{
ios::sync_with_stdio(0);
cin.tie(0);
pre_do();
int t=1;
//cin >> t;
while(t--){
solve();
}
//cout << "FINISH\n";
}