結果
問題 | No.149 碁石の移動 |
ユーザー | mafuyu-aki |
提出日時 | 2017-10-23 23:00:56 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 538 bytes |
コンパイル時間 | 328 ms |
コンパイル使用メモリ | 30,208 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-06 12:06:13 |
合計ジャッジ時間 | 874 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 0 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 0 ms
5,376 KB |
testcase_06 | AC | 0 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 0 ms
5,376 KB |
testcase_09 | AC | 0 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 0 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(int, char**)’: main.cpp:18:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 18 | scanf("%d %d", &Aw, &Ab); | ~~~~~^~~~~~~~~~~~~~~~~~~ main.cpp:19:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 19 | scanf("%d %d", &Bw, &Bb); | ~~~~~^~~~~~~~~~~~~~~~~~~ main.cpp:20:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 20 | scanf("%d %d", &C, &D); | ~~~~~^~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> int main(int argc, char *argv[]) { int Aw = 0; int Ab = 0; int Bw = 0; int Bb = 0; int C = 0; int D = 0; scanf("%d %d", &Aw, &Ab); scanf("%d %d", &Bw, &Bb); scanf("%d %d", &C, &D); if( C >= Ab ) { Bb += Ab; Bw += (C - Ab); Aw -= (C - Ab); Ab = 0; } else { Bb += C; Ab -= C; } if (D >= Bw) { Aw += Bw; Ab += (D - Bw); Bb -= (D - Bw); Bw = 0; } else { Aw += D; Bw -= D; } printf("%d\n", Aw); return 0; }