結果
| 問題 |
No.969 じゃんけん
|
| コンテスト | |
| ユーザー |
nsy_fuya
|
| 提出日時 | 2020-03-12 00:34:40 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 301 bytes |
| コンパイル時間 | 741 ms |
| コンパイル使用メモリ | 69,664 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-11-16 04:21:52 |
| 合計ジャッジ時間 | 1,042 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 4 |
ソースコード
#include <iostream>
#include <string>
#include <algorithm>
#include <cmath>
using namespace std;
typedef long long llint;
llint x;
void solve(){
cin >> x;
if(x==10 || x==4 || x==0)cout << "Yes";
else cout << "No";
cout << endl;
}
int main(int argc, char *argv[]) {
solve();
return 0;
}
nsy_fuya