結果
問題 | No.3059 tan |
ユーザー | kenta255 |
提出日時 | 2020-04-01 22:11:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 332 bytes |
コンパイル時間 | 2,265 ms |
コンパイル使用メモリ | 202,904 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 11:06:26 |
合計ジャッジ時間 | 2,601 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define FOR(I,A,B) for(ll I = ll(A); I < ll(B); ++I) const ll MOD = 1000000007; int main(){ int T; cin >> T; vector<ll> X(T); for(auto &&a:X){ cin >> a; if(a==0 || a==45){ cout << "Y" << endl; }else{ cout << "N" << endl; } } }