結果

問題 No.581 XOR
ユーザー varrho
提出日時 2019-09-17 21:42:09
言語 Nim
(2.2.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 116 bytes
コンパイル時間 3,593 ms
コンパイル使用メモリ 65,280 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-07 13:49:33
合計ジャッジ時間 3,232 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

import sequtils, strutils
let
  a: seq[int] = stdin.readline.split.map(parseInt)
  ans: int = a[0] xor a[1]
echo ans
0