結果

問題 No.3203 $\sin{x}$
コンテスト
ユーザー OneStar
提出日時 2025-11-06 12:42:50
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 2,075 ms
コンパイル使用メモリ 194,372 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-11-06 12:42:53
合計ジャッジ時間 2,913 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define L(i, l, r) for(ll i = (l); i < (r); i++)
#define R(i, l, r) for(ll i = (l); i > (r); i--)
#define all(x) (x).begin(), (x).end()
#define sz(x) (ll)((x).size())
using ll = long long;
using vl = vector<ll>;
using vvl = vector<vector<ll>>;
using pl = pair<ll, ll>;

int main() {
  ll x;
  cin >> x;
  
  if(x == 0) cout << "Yes" <<endl;
  else cout << "No" <<endl;
}
0