結果

問題 No.581 XOR
ユーザー taktak
提出日時 2018-03-23 10:04:20
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 131 bytes
コンパイル時間 3,624 ms
コンパイル使用メモリ 161,940 KB
実行使用メモリ 22,928 KB
最終ジャッジ日時 2023-09-07 02:21:19
合計ジャッジ時間 5,153 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
22,928 KB
testcase_01 AC 83 ms
22,820 KB
testcase_02 AC 82 ms
22,700 KB
testcase_03 AC 81 ms
22,828 KB
testcase_04 AC 82 ms
22,792 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

open System

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

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