結果
問題 | No.172 UFOを捕まえろ |
ユーザー | umashika |
提出日時 | 2016-02-06 19:51:46 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 378 bytes |
コンパイル時間 | 463 ms |
コンパイル使用メモリ | 25,088 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-21 20:52:19 |
合計ジャッジ時間 | 1,301 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 0 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:11:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | scanf("%d %d %lf",&x,&y,&r); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> #include<math.h> #include<stdlib.h> int main(void) { int x,y; double r; double b=0.0; scanf("%d %d %lf",&x,&y,&r); //UFO上の最も遠い距離 double distance = sqrt(x*x+y*y)+r; //直線と原点の距離(|b|/√2 < distance) while((double)abs(b)<distance*sqrt(2)){ b = b + 1.0; } printf("%d\n",(int)ceil(b)); return 0; }