結果
問題 |
No.8059 tan
|
ユーザー |
![]() |
提出日時 | 2020-04-01 21:45:28 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 230 bytes |
コンパイル時間 | 1,447 ms |
コンパイル使用メモリ | 165,116 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 10:17:32 |
合計ジャッジ時間 | 1,826 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 3 |
ソースコード
#include <bits/stdc++.h> using namespace std; constexpr int mod = 1000000007; int main() { int N,M; cin >> N; for (size_t i = 0; i < N; i++) { cin >> M; if (M / 45 == 0)cout << "Y"; else cout << "N"; cout << endl; } }