結果
| 問題 | No.581 XOR |
| コンテスト | |
| ユーザー |
Bioinfo_K
|
| 提出日時 | 2017-10-27 22:43:49 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 255 bytes |
| 記録 | |
| コンパイル時間 | 408 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 15,500 KB |
| 最終ジャッジ日時 | 2026-05-16 01:35:45 |
| 合計ジャッジ時間 | 2,109 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 4 WA * 4 |
ソースコード
import sys,collections sys.setrecursionlimit(10**7) def Is(): return [int(x) for x in sys.stdin.readline().split()] def Ss(): return sys.stdin.readline().split() def I(): return int(sys.stdin.readline()) def S(): return input() a,c = Is() print(a | c)
Bioinfo_K