結果
| 問題 |
No.2819 Binary Binary-Operator
|
| コンテスト | |
| ユーザー |
risujiroh
|
| 提出日時 | 2024-07-26 21:52:11 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 29 ms / 2,000 ms |
| コード長 | 368 bytes |
| コンパイル時間 | 3,076 ms |
| コンパイル使用メモリ | 244,256 KB |
| 実行使用メモリ | 25,452 KB |
| 平均クエリ数 | 3.00 |
| 最終ジャッジ日時 | 2024-07-26 21:52:22 |
| 合計ジャッジ時間 | 7,896 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 64 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
// x@y@y@y
// 1. x@y == x
// 2. x@y == y
// 2.1. y@y == x
// 2.2. y@y == y
void Solve() {
int x, y;
cin >> x >> y;
cout << "4\n";
cout << x << ' ' << y << ' ' << y << ' ' << y << '\n';
int t;
cin >> t;
cout << t << '\n';
}
int main() {
ios::sync_with_stdio(false);
// cin.tie(nullptr);
Solve();
}
risujiroh