結果
| 問題 | No.3209 Cherry Calculation |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-10-02 23:34:17 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 288µs | |
| コード長 | 410 bytes |
| 記録 | |
| コンパイル時間 | 2,006 ms |
| コンパイル使用メモリ | 327,340 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-15 08:18:07 |
| 合計ジャッジ時間 | 3,288 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 20 |
ソースコード
// #pragma GCC optimize ("Ofast")
// #pragma GCC optimize ("unroll-loops")
// #pragma GCC target ("avx,avx2,fma")
#include <bits/stdc++.h>
#define rep(i, a, b) for(int i = (a); i <= (b); i ++)
using std::cin, std::cout, std::cerr;
using ll = long long;
int main() {
std::ios::sync_with_stdio(false);
int a, b; cin >> a >> b;
int x = 10 - a;
int y = b - x;
cout << x << ' ' << y << '\n';
}