結果
問題 | No.514 宝探し3 |
ユーザー | lunnear |
提出日時 | 2019-02-18 05:46:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 25 ms / 2,000 ms |
コード長 | 516 bytes |
コンパイル時間 | 446 ms |
コンパイル使用メモリ | 24,448 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 2.75 |
最終ジャッジ日時 | 2024-07-16 16:39:51 |
合計ジャッジ時間 | 1,386 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
24,964 KB |
testcase_01 | AC | 23 ms
25,220 KB |
testcase_02 | AC | 22 ms
25,220 KB |
testcase_03 | AC | 22 ms
24,580 KB |
testcase_04 | AC | 23 ms
24,580 KB |
testcase_05 | AC | 22 ms
24,580 KB |
testcase_06 | AC | 22 ms
25,220 KB |
testcase_07 | AC | 22 ms
24,836 KB |
testcase_08 | AC | 22 ms
25,220 KB |
testcase_09 | AC | 22 ms
25,092 KB |
testcase_10 | AC | 22 ms
24,580 KB |
testcase_11 | AC | 22 ms
25,208 KB |
コンパイルメッセージ
main.cpp: In function ‘s8 q(s8, s8)’: main.cpp:8:14: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘s8’ {aka ‘long long int’} [-Wformat=] 8 | printf("%d %d\n", x, y); | ~^ ~ | | | | int s8 {aka long long int} | %lld main.cpp:8:17: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘s8’ {aka ‘long long int’} [-Wformat=] 8 | printf("%d %d\n", x, y); | ~^ ~ | | | | int s8 {aka long long int} | %lld main.cpp:12:13: warning: format ‘%d’ expects argument of type ‘int*’, but argument 2 has type ‘s8*’ {aka ‘long long int*’} [-Wformat=] 12 | scanf("%d", &ret); | ~^ ~~~~ | | | | | s8* {aka long long int*} | int* | %lld main.cpp:12:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%d", &ret); | ~~~~~^~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <stdlib.h> typedef long long s8; s8 q(s8 x, s8 y) { printf("%d %d\n", x, y); fflush(0); s8 ret; scanf("%d", &ret); return ret; } int main() { const s8 MAX = 1000000000; s8 d[2]; d[0] = q(0, 0); if(d[0] == 0) return 0; d[1] = q(MAX, 0); if(d[1] == 0) return 0; s8 x, y; x = d[0] - (MAX - d[1]); x = (MAX - d[1]) + x / 2; y = abs(d[0] - x); q(x, y); return 0; }