結果

問題 No.581 XOR
ユーザー taktak
提出日時 2018-03-23 10:05:04
言語 F#
(F# 4.0)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 133 bytes
コンパイル時間 6,630 ms
コンパイル使用メモリ 190,312 KB
実行使用メモリ 35,020 KB
最終ジャッジ日時 2024-06-24 21:02:28
合計ジャッジ時間 10,502 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
34,196 KB
testcase_01 AC 324 ms
33,948 KB
testcase_02 AC 327 ms
33,812 KB
testcase_03 AC 327 ms
34,068 KB
testcase_04 AC 324 ms
34,068 KB
testcase_05 AC 324 ms
33,888 KB
testcase_06 AC 317 ms
34,332 KB
testcase_07 AC 314 ms
33,956 KB
testcase_08 AC 318 ms
35,020 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (225 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System

let A,C = 
    let t = Console.ReadLine().Split()
            |> Array.map(int64)
    t.[0],t.[1]

A^^^C
|> printfn "%i"
0