結果
| 問題 |
No.98 円を描こう
|
| コンテスト | |
| ユーザー |
ID 21712
|
| 提出日時 | 2025-01-22 20:50:14 |
| 言語 | Go (1.23.4) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 144 bytes |
| コンパイル時間 | 14,884 ms |
| コンパイル使用メモリ | 240,160 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2025-01-22 20:50:30 |
| 合計ジャッジ時間 | 12,701 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 3 |
| other | AC * 5 WA * 1 |
ソースコード
package main
import . "fmt"
import . "math"
func main() {
var x,y float64
Scan(&x,&y)
r:=Sqrt(x*x+y*y)
ans:=int(Ceil(r+r))
Println(ans)
}
ID 21712