結果
問題 | No.514 宝探し3 |
ユーザー | Yamyuki |
提出日時 | 2017-05-05 22:53:35 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 26 ms / 2,000 ms |
コード長 | 284 bytes |
コンパイル時間 | 466 ms |
コンパイル使用メモリ | 20,096 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 3.00 |
最終ジャッジ日時 | 2024-07-16 13:03:49 |
合計ジャッジ時間 | 1,717 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
24,580 KB |
testcase_01 | AC | 23 ms
25,220 KB |
testcase_02 | AC | 25 ms
24,836 KB |
testcase_03 | AC | 24 ms
24,836 KB |
testcase_04 | AC | 24 ms
24,964 KB |
testcase_05 | AC | 23 ms
24,836 KB |
testcase_06 | AC | 24 ms
24,580 KB |
testcase_07 | AC | 24 ms
25,220 KB |
testcase_08 | AC | 23 ms
24,580 KB |
testcase_09 | AC | 25 ms
25,220 KB |
testcase_10 | AC | 24 ms
24,836 KB |
testcase_11 | AC | 22 ms
25,076 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:7:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 7 | scanf("%lld",&a); | ^~~~~~~~~~~~~~~~ main.c:10:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | scanf("%lld",&b); | ^~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> int main(int argc, char const *argv[]){ long long x,y,a,b; printf("0 0\n"); fflush(stdout); scanf("%lld",&a); printf("1000000000 0\n"); fflush(stdout); scanf("%lld",&b); x=(a-b+1000000000)/2; y=a-x; printf("%lld %lld\n",x,y); fflush(stdout); return 0; }