結果
問題 | No.138 化石のバージョン |
ユーザー | demu |
提出日時 | 2015-06-01 00:27:20 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,741 bytes |
コンパイル時間 | 146 ms |
コンパイル使用メモリ | 24,448 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-06 13:05:23 |
合計ジャッジ時間 | 1,156 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 0 ms
6,944 KB |
testcase_07 | AC | 0 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 0 ms
6,944 KB |
testcase_10 | AC | 0 ms
6,940 KB |
testcase_11 | AC | 0 ms
6,940 KB |
testcase_12 | AC | 0 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 0 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 0 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | AC | 0 ms
6,940 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 1 ms
6,940 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 1 ms
6,944 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 1 ms
6,940 KB |
testcase_34 | AC | 1 ms
6,944 KB |
testcase_35 | AC | 1 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int divide(char*)’: main.cpp:6:30: warning: ‘sizeof’ on array function parameter ‘part’ will return size of ‘char*’ [-Wsizeof-array-argument] 6 | for (int i=0; i < sizeof(part)-1; i++) { | ~^~~~~ main.cpp:4:17: note: declared here 4 | int divide(char part[4]) { | ~~~~~^~~~~~~
ソースコード
#include <stdio.h> #include <string.h> int divide(char part[4]) { int length = 0; for (int i=0; i < sizeof(part)-1; i++) { if (part[i] != '\0') length++; } return length; } void separate(char org[2][12], char part[2][3][4], int length[2][3]) { for (int i = 0; i < 2; i++) { char* tp = strtok(org[i], "."); sprintf(part[i][0],"%s",tp); int count = 0; while (tp != NULL) { tp = strtok(NULL, "."); if (tp != NULL) { if (count++ == 0) sprintf(part[i][1], "%s", tp); else sprintf(part[i][2], "%s", tp); } } for (int j=0; j<3; j++) length[i][j] = divide(part[i][j]); } } void bigger(char part[2][3][4], int length[2][3]) { for (int i=0; i < 3; i++) { int sum[2] = {0,0}; if (length[0][i] > length[1][i]) { printf("YES\n"); return; } else if (length[0][i] == length[1][i]) { for (int j =0; j < length[0][i]; j++) { if ((int) part[0][i][j] > (int) part[1][i][j]) { printf("YES\n"); return; } else if ((int) part[0][i][j] < (int) part[1][i][j]) { printf("NO\n"); return; } } } else { printf("NO\n"); return; } } printf("YES\n"); // 全て等しいとき } int main() { int sum[2] = {0,0}; int length[2][3] = {0}; char version[2][12] = {"51.52.61","37.73.94"}; char part[2][3][4]= {0}; //scanf("%s %s",&version[0], &version[1]); separate(version, part, length); bigger(part, length); return 0; }