結果

問題 No.3059 tan
ユーザー tamatotamato
提出日時 2020-04-01 21:25:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 87,064 KB
実行使用メモリ 71,372 KB
最終ジャッジ日時 2023-09-09 15:13:23
合計ジャッジ時間 974 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,312 KB
testcase_01 AC 68 ms
71,304 KB
testcase_02 AC 66 ms
71,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    for _ in range(int(input())):
        x = int(input())
        if x == 45 or x == 0:
            print('Y')
        else:
            print('N')


if __name__ == '__main__':
    main()
0