結果
| 問題 |
No.98 円を描こう
|
| コンテスト | |
| ユーザー |
ikd
|
| 提出日時 | 2015-11-01 09:57:34 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 244 bytes |
| コンパイル時間 | 640 ms |
| コンパイル使用メモリ | 64,468 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-13 06:50:13 |
| 合計ジャッジ時間 | 1,129 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 6 |
ソースコード
#include<iostream>
#include<stdio.h>
#include<vector>
#include<algorithm>
#include<math.h>
using namespace std;
int main(){
int x, y;
cin>> x>> y;
double r = sqrt(x*x+y*y);
printf("%d\n", (int)floor(2*r+1));
return 0;
}
ikd