結果
| 問題 | No.3115 One Power One Kill |
| コンテスト | |
| ユーザー |
hiromi_ayase
|
| 提出日時 | 2025-04-18 23:54:57 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 448 bytes |
| コンパイル時間 | 5,189 ms |
| コンパイル使用メモリ | 333,024 KB |
| 実行使用メモリ | 26,108 KB |
| 平均クエリ数 | 2.00 |
| 最終ジャッジ日時 | 2025-04-18 23:55:08 |
| 合計ジャッジ時間 | 9,590 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 20 |
ソースコード
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using i32 = int;
using u32 = unsigned int;
using i64 = long long;
using u64 = unsigned long long;
#define FAST_IO \
ios::sync_with_stdio(false); \
cin.tie(0);
const i64 INF = 1001001001001001001;
using Modint = atcoder::static_modint<998244353>;
int main() {
FAST_IO
i64 A = 102;
i64 B = 103;
cout << A << " " << B << endl;
cout << 1 << endl;
}
hiromi_ayase