結果
| 問題 | No.3248 構築問題 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-08-29 21:26:26 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 357µs | |
| コード長 | 247 bytes |
| 記録 | |
| コンパイル時間 | 2,114 ms |
| コンパイル使用メモリ | 327,876 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-14 12:37:39 |
| 合計ジャッジ時間 | 2,954 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define int long long int
#define endl "\n"
signed main(){
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
int n,x;cin>>n>>x;
if(n==1)cout<<"No";
else cout<<"Yes";
return 0;
}