結果
問題 | No.2194 兄弟の掛け引き |
ユーザー | dm99x |
提出日時 | 2023-07-28 02:43:16 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 818 bytes |
コンパイル時間 | 307 ms |
コンパイル使用メモリ | 28,800 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-05 08:39:57 |
合計ジャッジ時間 | 807 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | WA | - |
testcase_15 | AC | 1 ms
5,248 KB |
testcase_16 | WA | - |
ソースコード
#include <stdio.h> int main(void) { int N = 1; int A, B, C, X; scanf("%d %d %d", &A, &B, &C); while(1) { X = N * A - B; if(X <= 0) { if(N * A != C) { printf("%d", -1); break; } else { printf("%d\n", N); N++; } } else { if(X > C) { if(N == 1) { printf("%d", -1); break; } else { break; } } else { printf("%d\n", N); N++; } } } return 0; }