結果
問題 |
No.2323 Nafmo、A+Bをする
|
ユーザー |
|
提出日時 | 2023-05-28 15:58:11 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 201 bytes |
コンパイル時間 | 453 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-12-27 10:05:57 |
合計ジャッジ時間 | 1,473 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 5 WA * 12 |
ソースコード
def base_10(num_n,n): num_10 = 0 for s in str(num_n): num_10 *= n num_10 += int(s) return num_10 a = int(input()) b = int(input()) c = a ^ b c = base_10(c, 2) print(c)