結果
問題 | No.98 円を描こう |
ユーザー |
![]() |
提出日時 | 2015-01-28 22:33:54 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 205 bytes |
コンパイル時間 | 410 ms |
コンパイル使用メモリ | 54,236 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-23 03:41:32 |
合計ジャッジ時間 | 1,099 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 6 |
ソースコード
#include <iostream>using namespace std;int main(){int x, y;while (cin>>x>>y) {for(int r=1;;++r) if (r*r>4*(x*x+y*y)) {cout<<r<<endl;break;}}}