結果
問題 |
No.89 どんどんドーナツどーんといこう!
|
ユーザー |
![]() |
提出日時 | 2020-08-15 04:04:05 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 152 bytes |
コンパイル時間 | 731 ms |
コンパイル使用メモリ | 76,920 KB |
最終ジャッジ日時 | 2025-01-13 00:59:54 |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | WA * 9 |
ソースコード
#include <iostream> #include <cmath> using namespace std; int main(){ int Xp, Yp; cin >> Xp >> Yp; cout << (int) hypot(Xp * 2, Yp * 2) + 1 << endl; }