結果
| 問題 | No.1218 Something Like a Theorem |
| コンテスト | |
| ユーザー |
umezo
|
| 提出日時 | 2020-09-04 22:12:37 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 267 bytes |
| 記録 | |
| コンパイル時間 | 1,952 ms |
| コンパイル使用メモリ | 192,284 KB |
| 最終ジャッジ日時 | 2025-01-14 05:51:48 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 12 WA * 4 |
ソースコード
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;
#include <bits/stdc++.h>
using namespace std;
int main(){
int n,z;
cin>>n>>z;
if(n<=2) cout<<"Yes"<<endl;
else cout<<"No"<<endl;
return 0;
}
umezo