結果
問題 | No.172 UFOを捕まえろ |
ユーザー | michonz4 |
提出日時 | 2019-12-18 00:00:21 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 182 bytes |
コンパイル時間 | 149 ms |
コンパイル使用メモリ | 30,080 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 00:20:04 |
合計ジャッジ時間 | 1,070 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
#include <stdio.h> #include <stdlib.h> #include <math.h> int main() { int x, y, r; scanf("%d %d %d", &x, &y, &r); printf("%.lf\n", abs(x)+abs(y)+sqrt(2)*r+0.5); return 0; }