結果
問題 | No.2323 Nafmo、A+Bをする |
ユーザー | RiSa |
提出日時 | 2023-07-04 02:23:34 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 575 bytes |
コンパイル時間 | 236 ms |
コンパイル使用メモリ | 28,800 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-18 00:13:09 |
合計ジャッジ時間 | 770 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 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 | - |
ソースコード
#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; }