結果
問題 | No.446 ゆきこーだーの雨と雪 (1) |
ユーザー | olphe |
提出日時 | 2016-11-18 22:35:22 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,051 bytes |
コンパイル時間 | 348 ms |
コンパイル使用メモリ | 54,240 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-04 17:51:39 |
合計ジャッジ時間 | 892 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:10:41: warning: NULL used in arithmetic [-Wpointer-arith] 10 | for (int i = 0; letter[0][i] != NULL;i++) { | ^~~~ main.cpp:16:41: warning: NULL used in arithmetic [-Wpointer-arith] 16 | for (int i = 0; letter[1][i] != NULL; i++) { | ^~~~ main.cpp:24:46: warning: NULL used in arithmetic [-Wpointer-arith] 24 | if (start[0] == 0 && letter[0][1] != NULL) { | ^~~~ main.cpp:28:46: warning: NULL used in arithmetic [-Wpointer-arith] 28 | if (start[1] == 0 && letter[1][1] != NULL) { | ^~~~ main.cpp:32:41: warning: NULL used in arithmetic [-Wpointer-arith] 32 | for (int i = 0; letter[0][i] != NULL; i++) { | ^~~~ main.cpp:40:41: warning: NULL used in arithmetic [-Wpointer-arith] 40 | for (int i = 0; letter[1][i] != NULL; i++) { | ^~~~
ソースコード
#include "iostream" using namespace std; char letter[2][6]; int start[2]; int num[2]; int main() { cin >> letter[1] >> letter[0]; for (int i = 0; letter[0][i] != NULL;i++) { if ((letter[0][i] >= 'a'&&letter[0][i] <= 'z') || (letter[0][i] >= 'A'&&letter[0][i] <= 'Z')) { cout << "NG\n"; return 0; } } for (int i = 0; letter[1][i] != NULL; i++) { if ((letter[1][i] >= 'a'&&letter[1][i] <= 'z') || (letter[1][i] >= 'A'&&letter[1][i] <= 'Z')) { cout << "NG\n"; return 0; } } start[0] = letter[0][0] - '0'; start[1] = letter[1][0] - '0'; if (start[0] == 0 && letter[0][1] != NULL) { cout << "NG\n"; return 0; } if (start[1] == 0 && letter[1][1] != NULL) { cout << "NG\n"; return 0; } for (int i = 0; letter[0][i] != NULL; i++) { num[0] *= 10; num[0] += letter[0][i]-'0'; } if (num[0] > 12345) { cout << "NG\n"; return 0; } for (int i = 0; letter[1][i] != NULL; i++) { num[1] *= 10; num[1] += letter[1][i]-'0'; } if (num[1] > 12345) { cout << "NG\n"; return 0; } cout << "OK\n"; return 0; }