結果
| 問題 | No.3209 Cherry Calculation |
| コンテスト | |
| ユーザー |
Ponzu
|
| 提出日時 | 2025-07-26 17:48:18 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 243µs | |
| コード長 | 261 bytes |
| 記録 | |
| コンパイル時間 | 933 ms |
| コンパイル使用メモリ | 159,080 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-13 14:09:43 |
| 合計ジャッジ時間 | 2,383 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 20 |
ソースコード
// ,,廿_廿,,
#include<iostream>
#include<vector>
using namespace std;
int main(){
int a,b;cin>>a>>b;
for(int x=1;x<=10;++x){
if(a+x != 10)continue;
for(int y=1;y<=10;++y){
if(x+y == b){
cout << x << ' ' << y << endl;
return 0;
}
}
}
}
Ponzu