結果
問題 | No.172 UFOを捕まえろ |
ユーザー | しめはじめ |
提出日時 | 2019-08-05 14:21:16 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 289 bytes |
コンパイル時間 | 419 ms |
コンパイル使用メモリ | 30,080 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-18 13:32:39 |
合計ジャッジ時間 | 1,261 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
#include <stdio.h> #include <math.h> int main(void){ int x, y, r; int xdis, ydis, dis; int ans = 0; scanf( "%d %d %d", &x, &y, &r ); xdis = x < 0 ? x * -1: x; ydis = y < 0 ? y * -1: y; ans = xdis + ydis + ceil( sqrt( 2 * r * r ) ); printf( "%d\n", ans ); }