結果
| 問題 |
No.1178 Can you draw a Circle?
|
| コンテスト | |
| ユーザー |
tamato
|
| 提出日時 | 2020-08-21 22:09:38 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 220 bytes |
| コンパイル時間 | 264 ms |
| コンパイル使用メモリ | 82,560 KB |
| 実行使用メモリ | 52,736 KB |
| 最終ジャッジ日時 | 2024-11-07 13:53:58 |
| 合計ジャッジ時間 | 1,629 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 15 |
ソースコード
mod = 1000000007
eps = 10**-9
def main():
import sys
input = sys.stdin.readline
a, b, c, d, e, f = map(int, input().split())
assert a != 0
assert b != 0
if __name__ == '__main__':
main()
tamato