結果
| 問題 |
No.3248 構築問題
|
| コンテスト | |
| ユーザー |
Taiki0715
|
| 提出日時 | 2025-08-29 22:37:02 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 142 bytes |
| コンパイル時間 | 786 ms |
| コンパイル使用メモリ | 76,816 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2025-08-29 22:37:04 |
| 合計ジャッジ時間 | 1,344 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 WA * 5 |
ソースコード
#include<iostream>
using namespace std;
int main(){
int n,x;
cin>>n>>x;
if(n==1&&x==1)cout<<"No\n";
else cout<<"Yes\n";
return 0;
}
Taiki0715