結果
| 問題 |
No.1027 U+1F4A0
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-05-23 22:47:37 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 196 bytes |
| コンパイル時間 | 432 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2024-10-09 09:59:34 |
| 合計ジャッジ時間 | 1,799 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 13 WA * 9 |
ソースコード
import math
D = list(map(int, input().split()))
are = math.sqrt(D[1]) / math.sqrt(2)
if D[0] < D[1] and D[0] > are:
print(8)
elif D[0] == D[1] or D[0] == are:
print(4)
else:
print(0)