結果
| 問題 |
No.1027 U+1F4A0
|
| コンテスト | |
| ユーザー |
toshiro_yanagi
|
| 提出日時 | 2020-07-12 21:19:15 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 139 bytes |
| コンパイル時間 | 113 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-11-06 03:30:33 |
| 合計ジャッジ時間 | 1,827 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 WA * 7 |
ソースコード
from math import sqrt c, s = map(int, input().split()) if s < c or c * sqrt(2) < s: ans = 0 elif c == s: ans = 4 else: ans = 8 print(ans)
toshiro_yanagi