結果
| 問題 |
No.8057 A xor B = C
|
| コンテスト | |
| ユーザー |
atcoderbeginner
|
| 提出日時 | 2020-04-02 02:08:31 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 111 bytes |
| コンパイル時間 | 155 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-06-27 14:30:35 |
| 合計ジャッジ時間 | 774 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 5 |
ソースコード
import sys A , B = map(int,input().split()) # print(bin(A) ," : " ,bin(B) , " : " ,bin(A^B)) print(A ^ B )
atcoderbeginner