結果
問題 | No.219 巨大数の概算 |
ユーザー | asugen0402 |
提出日時 | 2019-01-22 13:35:42 |
言語 | C (gcc 12.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,085 bytes |
コンパイル時間 | 197 ms |
コンパイル使用メモリ | 32,768 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 13:32:43 |
合計ジャッジ時間 | 17,733 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
ソースコード
#include <limits.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> // 内部定数 #define D_ROUGH_MAX 40 // 最大概算数 // 内部構造体 - 概算情報 typedef struct Rough { double mdVal; // 値 long long mlDigit; // 桁数 } Rough; // 内部変数 static FILE *szpFpI; // 入力 static Rough sz1Rough[D_ROUGH_MAX]; // 概算 static int siRCnt; // 概算数 // 内部変数 - テスト用 #ifdef D_TEST static int siRes; static FILE *szpFpA; #endif // 桁 - セット int fSetDigit( Rough *pzpRough // <I> 概算 ) { while (pzpRough->mdVal >= 10.0) { pzpRough->mdVal /= 10.0; pzpRough->mlDigit++; } return 0; } // 積 int fMulti( Rough *pzpRough1 // <I> 概算1 , Rough *pzpRough2 // <I> 概算2 , Rough *pzpRes // <I> 積 ) { pzpRes->mdVal = pzpRough1->mdVal * pzpRough2->mdVal; pzpRes->mlDigit = pzpRough1->mlDigit + pzpRough2->mlDigit; // 桁 - セット fSetDigit(pzpRes); return 0; } // 実行メイン int fMain( int piTNo // <I> テスト番号 1~ ) { int i; char lc1Buf[1024], lc1Out[1024]; // 入力 - セット #ifdef D_TEST sprintf(lc1Buf, ".\\Test\\T%d.txt", piTNo); szpFpI = fopen(lc1Buf, "r"); sprintf(lc1Buf, ".\\Test\\A%d.txt", piTNo); szpFpA = fopen(lc1Buf, "r"); siRes = 0; #else szpFpI = stdin; #endif // テスト列数 - 取得 int liTCnt; fgets(lc1Buf, sizeof(lc1Buf), szpFpI); sscanf(lc1Buf, "%d", &liTCnt); // 値 - 取得 for (i = 0; i < liTCnt; i++) { int liA, liB; fgets(lc1Buf, sizeof(lc1Buf), szpFpI); sscanf(lc1Buf, "%d%d", &liA, &liB); // 1乗 int liMVal = 1; sz1Rough[0].mdVal = (double)liA; sz1Rough[0].mlDigit = 0; siRCnt = 1; fSetDigit(sz1Rough); // 桁 - セット // B乗以上までセット while (liMVal < liB) { liMVal += liMVal; fMulti(&sz1Rough[siRCnt - 1], &sz1Rough[siRCnt - 1], &sz1Rough[siRCnt]); // 積 siRCnt++; } // B乗算出 Rough lzRough; lzRough.mdVal = 1.0; lzRough.mlDigit = 0; while (liB > 0) { siRCnt--; if (liB >= liMVal) { liB -= liMVal; fMulti(&lzRough, &sz1Rough[siRCnt], &lzRough); } liMVal /= 2; } // 小数部分 sprintf(lc1Buf, "%.1lf\n", lzRough.mdVal); // 結果 - セット sprintf(lc1Out, "%c %c %lld\n", lc1Buf[0], lc1Buf[2], lzRough.mlDigit); // 結果 - 表示 #ifdef D_TEST fgets(lc1Buf, sizeof(lc1Buf), szpFpA); if (strcmp(lc1Buf, lc1Out)) { siRes = -1; } #else printf("%s", lc1Out); #endif } // 残データ有無 #ifdef D_TEST lc1Buf[0] = '\0'; fgets(lc1Buf, sizeof(lc1Buf), szpFpA); if (strcmp(lc1Buf, "")) { siRes = -1; } #endif // テストファイルクローズ #ifdef D_TEST fclose(szpFpI); fclose(szpFpA); #endif // テスト結果 #ifdef D_TEST if (siRes == 0) { printf("OK %d\n", piTNo); } else { printf("NG %d\n", piTNo); } #endif return 0; } int main() { #ifdef D_TEST int i; for (i = D_TEST_SNO; i <= D_TEST_ENO; i++) { fMain(i); } #else fMain(0); #endif return 0; }