結果
問題 | No.1178 Can you draw a Circle? |
ユーザー | kozy |
提出日時 | 2020-08-21 21:44:56 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 362 bytes |
コンパイル時間 | 281 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-11-07 13:46:36 |
合計ジャッジ時間 | 1,298 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 33 ms
10,624 KB |
testcase_02 | AC | 31 ms
10,752 KB |
testcase_03 | WA | - |
testcase_04 | AC | 31 ms
10,624 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 31 ms
10,624 KB |
testcase_08 | AC | 31 ms
10,752 KB |
testcase_09 | AC | 30 ms
10,624 KB |
testcase_10 | AC | 30 ms
10,752 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
import sys import math sys.setrecursionlimit(10 ** 7) def input() : return sys.stdin.readline().strip() def INT() : return int(input()) def MAP() : return map(int,input().split()) def LIST() : return list(MAP()) def NIJIGEN(H): return [list(input()) for i in range(H)] a,b,c,d,e,f=map(int,input().split()) N=c/2 M=d/2 s=N**2+M**2 k=f-e+s print(math.sqrt(k))