結果

問題 No.2323 Nafmo、A+Bをする
ユーザー RiSaRiSa
提出日時 2023-07-04 02:25:34
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 575 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 27,516 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-24 23:57:35
合計ジャッジ時間 1,228 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 WA -
testcase_02 AC 1 ms
4,380 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
4,380 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 0 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h> 

int deci(int);

int main(void){     
/* 変数の宣言 */
  int binary1,binary2;
  int decimal = 0;
  int base = 1;
 
  /* 10進数の入力 */
  scanf("%d", &binary1);
  scanf("%d", &binary2);
 
 int m,n;
  /* 変換した2進数の出力 */
  m = deci(binary1);
  n = deci(binary2);
 
  printf("%d",m+n);
	return 0; 
}


int deci(int binary){
  int decimal = 0;
  int base = 1;
	 /* 2進数を10進数に変換 */
  while(binary>0){
    decimal = decimal + ( binary % 10 ) * base;
    binary = binary / 10;
    base = base * 2;
  }
  return decimal;
}
0