結果

問題 No.3059 tan
ユーザー y61mpnly61mpnl
提出日時 2020-04-01 23:17:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 244 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-27 12:42:23
合計ジャッジ時間 8,740 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 WA -
testcase_02 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import tan, pi
for t in range(int(input())):
        x = tan(int(input())/180*pi)
        for i in range(1,100000):
                if x*i%1==0:
                        print("Y")
                        break
        else: print("N")
0