結果
問題 |
No.8059 tan
|
ユーザー |
![]() |
提出日時 | 2020-04-01 23:17:38 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 244 bytes |
コンパイル時間 | 81 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-06-27 12:42:23 |
合計ジャッジ時間 | 8,740 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 2 TLE * 1 |
ソースコード
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")