結果
| 問題 |
No.149 碁石の移動
|
| コンテスト | |
| ユーザー |
sasa
|
| 提出日時 | 2025-03-07 10:39:59 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 562 bytes |
| コンパイル時間 | 652 ms |
| コンパイル使用メモリ | 27,008 KB |
| 実行使用メモリ | 8,604 KB |
| 最終ジャッジ日時 | 2025-03-07 10:40:01 |
| 合計ジャッジ時間 | 1,351 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 WA * 1 |
| other | AC * 5 WA * 8 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:5:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
5 | scanf("%d%d%d%d%d%d",&whiteA,&blackA,&whiteB,&blackB,&AtoB,&BtoA);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h>
int main(){
int whiteA,blackA,whiteB,blackB,AtoB,BtoA;
scanf("%d%d%d%d%d%d",&whiteA,&blackA,&whiteB,&blackB,&AtoB,&BtoA);
int white,black;
if(AtoB >= blackA){
black = blackA;
white = AtoB - blackA;
}else{
black = blackA - AtoB;
white = 0;
}
blackA -= black;
whiteA -= white;
blackB += black;
whiteB += white;
if(BtoA >= whiteB){
black = BtoA - whiteB;
white = whiteB;
}else{
black = 0;
white = whiteB - BtoA;
}
blackA += black;
whiteA += white;
blackB -= black;
whiteB -= white;
printf("%d",whiteA);
}
sasa