結果
問題 | No.1298 OR XOR |
ユーザー | shu8Cream |
提出日時 | 2020-11-29 00:46:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 543 bytes |
コンパイル時間 | 2,032 ms |
コンパイル使用メモリ | 201,828 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-09-13 01:42:53 |
合計ジャッジ時間 | 5,608 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,756 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for (int i=0; i<(n); i++) #define Rep(i,init,n) for (int i=init; i<(n); i++) using ll = long long; using P = pair<int, int>; using vi = vector<int>; using vvi = vector<vi>; using Graph = vvi; int main(){ int n; cin >> n; Rep(a,1,n+1){ Rep(b,1,n+1){ Rep(c,1,n+1){ if((a|b)==(b|c) && (b|c)==(c|a) && (c|a)==n && (a^b^c)==0){ cout << a << " " << b << " " << c << endl; return 0; } } } } cout << "-1 -1 -1" << endl; }