結果
| 問題 | No.1298 OR XOR |
| コンテスト | |
| ユーザー |
Haa
|
| 提出日時 | 2020-12-10 19:23:50 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 360 bytes |
| 記録 | |
| コンパイル時間 | 833 ms |
| コンパイル使用メモリ | 178,916 KB |
| 実行使用メモリ | 9,796 KB |
| 最終ジャッジ日時 | 2026-08-31 08:41:25 |
| 合計ジャッジ時間 | 3,600 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 13 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(int i=0;i<n;i++)
#define ALL(v) v.begin(),v.end()
constexpr ll MOD=998244353;
constexpr ll INF=1e18;
int main(){
int n; cin >> n;
cout << 0 << " " << n << " " << n << endl;
return 0;
}
Haa