結果
問題 | No.3059 tan |
ユーザー | FSM |
提出日時 | 2020-04-01 21:45:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#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; } }