結果
| 問題 | No.2819 Binary Binary-Operator |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-03-07 02:38:19 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 39 ms / 2,000 ms |
| コード長 | 602 bytes |
| 記録 | |
| コンパイル時間 | 1,011 ms |
| コンパイル使用メモリ | 208,084 KB |
| 実行使用メモリ | 5,760 KB |
| 平均クエリ数 | 3.00 |
| 最終ジャッジ日時 | 2026-07-06 21:54:31 |
| 合計ジャッジ時間 | 3,959 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 64 |
ソースコード
#include "bits/stdc++.h"
using namespace std;
#define REP(i, n) for (int i = 0; i < n; i++)
#define REPR(i, n) for (int i = n; i >= 0; i--)
#define FOR(i, m, n) for (ll i = m; i < n; i++)
#define FORR(i, m, n) for (ll i = m; i >= n; i--)
#define REPO(i, n) for (ll i = 1; i <= n; i++)
#define ll long long
#define INF (ll)1ll << 60
#define MINF (-1 * INF)
#define ALL(n) n.begin(), n.end()
#define MOD (ll)1000000007
#define P pair<ll, ll>
int main(){
ll x, y;
cin >> x >> y;
cout << 4 << endl;
cout << x << " " << y << " " << y << " " << y << endl;
ll t;
cin >> t;
cout << t << endl;
}