結果

問題 No.1057 素敵な日
ユーザー taktak
提出日時 2020-06-25 12:25:44
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 141 bytes
コンパイル時間 5,480 ms
コンパイル使用メモリ 159,264 KB
実行使用メモリ 26,860 KB
最終ジャッジ日時 2023-09-16 22:35:20
合計ジャッジ時間 6,985 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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, B) = 
    let t = Console.ReadLine().ToCharArray() |> Array.map int 
    t.[0], t.[1]

min A B 
|> (*) 2
|> printfn "%i"
0