結果
| 問題 |
No.98 円を描こう
|
| コンテスト | |
| ユーザー |
startcpp
|
| 提出日時 | 2016-01-16 20:09:01 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 197 bytes |
| コンパイル時間 | 508 ms |
| コンパイル使用メモリ | 55,056 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-19 20:14:55 |
| 合計ジャッジ時間 | 877 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 6 |
ソースコード
#include <iostream>
using namespace std;
int main(){
int x, y;
cin >> x >> y;
for( int r = 0; ; r++ ){
if( r * r > 4 * (x * x + y * y) ){
cout << r << endl;
break;
}
}
return 0;
}
startcpp