結果
| 問題 | No.1178 Can you draw a Circle? |
| コンテスト | |
| ユーザー |
tamato
|
| 提出日時 | 2020-08-21 22:09:38 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 220 bytes |
| 記録 | |
| コンパイル時間 | 192 ms |
| コンパイル使用メモリ | 85,376 KB |
| 実行使用メモリ | 52,480 KB |
| 最終ジャッジ日時 | 2026-05-07 22:02:25 |
| 合計ジャッジ時間 | 2,077 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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