結果
問題 |
No.1027 U+1F4A0
|
ユーザー |
|
提出日時 | 2020-05-18 18:04:46 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 174 bytes |
コンパイル時間 | 371 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-10-01 21:58:56 |
合計ジャッジ時間 | 1,908 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 8 WA * 14 |
ソースコード
import math d1,d2=map(int,input().split()) if math.cos(2*math.pi*(45/360)) == d1/d2: print(4) elif math.cos(2*math.pi*(45/360)) < d1/d2: print(8) else: print(0)