結果
| 問題 | No.149 碁石の移動 |
| コンテスト | |
| ユーザー |
funakoshi
|
| 提出日時 | 2019-08-26 11:38:43 |
| 言語 | C (gcc 15.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 409 bytes |
| 記録 | |
| コンパイル時間 | 160 ms |
| コンパイル使用メモリ | 40,832 KB |
| 最終ジャッジ日時 | 2026-02-22 04:30:00 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 11 WA * 2 |
ソースコード
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <math.h>
int main(void)
{
int aw,ab,bw,bb,atob,btoa;
scanf("%d %d",&aw,&ab);
scanf("%d %d",&bw,&bb);
scanf("%d %d",&atob,&btoa);
int tobwhite = atob-ab;
aw-=tobwhite;
bw+=tobwhite;
if(bw>btoa)
{
aw+=btoa;
}
else
{
aw+=bw;
}
printf("%d",aw);
}
funakoshi