結果
問題 | No.904 サメトロ |
ユーザー | pekempey |
提出日時 | 2019-01-18 03:55:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 431 bytes |
コンパイル時間 | 185 ms |
コンパイル使用メモリ | 30,848 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-13 12:11:13 |
合計ジャッジ時間 | 2,031 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | WA | - |
testcase_12 | RE | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | RE | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
ソースコード
#include <stdio.h> #include <assert.h> int N; int A[37], B[37]; int main() { scanf("%d", &N); assert(2 <= N && N <= 37); for (int i = 1; i < N; i++) { scanf("%d", &A[i]); assert(getchar() == ' '); scanf("%d", &B[i]); assert(getchar() == '\n'); assert(1 <= A[i] && A[i] <= 10000); assert(1 <= B[i] && B[i] <= 10000); } assert(getchar() == EOF); return 0; }