結果
問題 |
No.3203 $\sin{x}$
|
ユーザー |
|
提出日時 | 2025-07-18 21:27:10 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 253 bytes |
コンパイル時間 | 2,857 ms |
コンパイル使用メモリ | 275,308 KB |
実行使用メモリ | 7,716 KB |
最終ジャッジ日時 | 2025-07-18 21:27:17 |
合計ジャッジ時間 | 3,353 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 6 |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); ++i) using namespace std; int main() { int x; cin >> x; double y = sin(x); if (y == 0 or y == 1 or y == -1) puts("Yes"); else puts("No"); return 0; }