結果
| 問題 |
No.3203 $\sin{x}$
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-07-18 21:30:35 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 215 bytes |
| コンパイル時間 | 3,374 ms |
| コンパイル使用メモリ | 274,176 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2025-07-18 21:31:21 |
| 合計ジャッジ時間 | 3,947 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 6 |
ソースコード
#include <bits/stdc++.h>
#define int long long
using namespace std;
signed main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
int x;cin>>x;
if(x==0)cout<<"Yes"<<endl;
else cout<<"No"<<endl;
}