結果

問題 No.1432 Not Xor
コンテスト
ユーザー tanson
提出日時 2026-01-18 01:08:01
言語 Standard ML
(MLton 20210117)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 393 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 3,293 ms
コンパイル使用メモリ 708,748 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2026-01-18 01:08:10
合計ジャッジ時間 4,148 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

fun readLargeInt () =
    valOf (TextIO.scanStream (LargeInt.scan StringCvt.DEC) TextIO.stdIn)



val () =
    let
        val a = LargeWord.fromLargeInt(readLargeInt ())
        val b = LargeWord.fromLargeInt(readLargeInt ())

        val ans = LargeWord.toLargeInt(LargeWord.orb(a, b)) + LargeWord.toLargeInt(LargeWord.andb(a, b))
    in
        print (LargeInt.toString ans ^ "\n")
    end
0