結果
問題 | No.253 ロウソクの長さ |
ユーザー | asugen0402 |
提出日時 | 2019-02-01 13:45:12 |
言語 | C (gcc 12.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,424 bytes |
コンパイル時間 | 143 ms |
コンパイル使用メモリ | 30,336 KB |
実行使用メモリ | 39,728 KB |
最終ジャッジ日時 | 2024-07-16 16:39:16 |
合計ジャッジ時間 | 6,567 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
#include <float.h> #include <limits.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> // 内部定数 #define D_VAL_SEP 40 // 分岐値 #define D_VAL_MIN 10 // 最小値 #define D_VAL_MAX 1000000000 // 最大値 // 内部変数 static int siQCnt; // 質問回数 // 応答 int fRes( int piVal // <I> 値 ) { char lc1Buf[1024]; // 質問 printf("? %d\n", piVal); siQCnt++; fflush(stdin); // 回答 fgets(lc1Buf, sizeof(lc1Buf), stdin); sscanf(lc1Buf, "%d", &piVal); return piVal; } // 検索 int fSrh( int piMin // <I> 最小値 , int piMax // <I> 最大値 ) { int liRet; // 中間値 int liHalf = (piMin + piMax) / 2; // 応答 liRet = fRes(liHalf); if (liRet < 0) { return fSrh(piMin - 1, liHalf - 2); } else if (liRet > 0) { return fSrh(liHalf, piMax - 1); } else { return liHalf; } } // 実行メイン int fMain( int piTNo // <I> テスト番号 1~ ) { int liRet; // データ - 初期化 siQCnt = 0; // 質問回数 // 初回応答 liRet = fRes(D_VAL_SEP); if (liRet < 0) { liRet = fSrh(D_VAL_MIN - 1, D_VAL_SEP - 2); } else if (liRet > 0) { liRet = fSrh(D_VAL_SEP, D_VAL_MAX - 1); } else { liRet = D_VAL_SEP; } // 結果 - 表示 printf("! %d\n", liRet + siQCnt - 1); fflush(stdin); return 0; } int main() { fMain(0); return 0; }