結果
| 問題 |
No.1274 楽しい格子点
|
| コンテスト | |
| ユーザー |
👑 Kazun
|
| 提出日時 | 2020-10-30 22:21:18 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 165 bytes |
| コンパイル時間 | 173 ms |
| コンパイル使用メモリ | 82,068 KB |
| 実行使用メモリ | 67,056 KB |
| 最終ジャッジ日時 | 2024-07-22 01:17:53 |
| 合計ジャッジ時間 | 4,507 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 1 |
| other | AC * 10 WA * 7 RE * 40 |
ソースコード
from math import gcd
A,B=map(int,input().split())
G=gcd(A,B)
if A==B==0:
print(0.25)
elif A==0 or B==0:
print(0.2912859971)
assert G==1
print(0.3371877158)
Kazun