結果
問題 | 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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | AC | 36 ms
51,968 KB |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 36 ms
52,224 KB |
testcase_10 | AC | 36 ms
51,456 KB |
testcase_11 | WA | - |
testcase_12 | AC | 34 ms
51,968 KB |
testcase_13 | AC | 34 ms
51,968 KB |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | AC | 36 ms
51,456 KB |
testcase_17 | AC | 34 ms
52,096 KB |
testcase_18 | AC | 35 ms
51,968 KB |
testcase_19 | AC | 35 ms
51,456 KB |
testcase_20 | AC | 36 ms
51,712 KB |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | RE | - |
ソースコード
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)