結果

問題 No.441 和か積
ユーザー hum_ophum_op
提出日時 2017-04-16 21:10:25
言語 F#
(F# 4.0)
結果
AC  
実行時間 70 ms / 1,000 ms
コード長 349 bytes
コンパイル時間 10,073 ms
コンパイル使用メモリ 193,552 KB
実行使用メモリ 33,408 KB
最終ジャッジ日時 2024-06-27 03:52:22
合計ジャッジ時間 14,130 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
33,280 KB
testcase_01 AC 68 ms
33,024 KB
testcase_02 AC 68 ms
33,272 KB
testcase_03 AC 67 ms
33,024 KB
testcase_04 AC 68 ms
33,152 KB
testcase_05 AC 69 ms
33,280 KB
testcase_06 AC 69 ms
33,120 KB
testcase_07 AC 68 ms
32,896 KB
testcase_08 AC 69 ms
33,280 KB
testcase_09 AC 67 ms
32,880 KB
testcase_10 AC 65 ms
32,896 KB
testcase_11 AC 66 ms
32,896 KB
testcase_12 AC 69 ms
32,896 KB
testcase_13 AC 68 ms
32,768 KB
testcase_14 AC 69 ms
33,280 KB
testcase_15 AC 67 ms
33,024 KB
testcase_16 AC 68 ms
33,280 KB
testcase_17 AC 68 ms
32,768 KB
testcase_18 AC 69 ms
32,896 KB
testcase_19 AC 68 ms
33,024 KB
testcase_20 AC 69 ms
33,024 KB
testcase_21 AC 67 ms
33,008 KB
testcase_22 AC 67 ms
33,280 KB
testcase_23 AC 67 ms
33,152 KB
testcase_24 AC 68 ms
32,896 KB
testcase_25 AC 68 ms
33,004 KB
testcase_26 AC 68 ms
33,152 KB
testcase_27 AC 68 ms
33,132 KB
testcase_28 AC 68 ms
33,024 KB
testcase_29 AC 68 ms
33,132 KB
testcase_30 AC 69 ms
33,024 KB
testcase_31 AC 69 ms
32,880 KB
testcase_32 AC 70 ms
33,408 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (292 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 No441 () =
    let IN = Console.ReadLine().Split(' ')
    let A = Numerics.BigInteger.Parse <|  IN.[0]
    let B = Numerics.BigInteger.Parse <| IN.[1]
    
    let sum = A + B
    let pro = A * B

    if sum > pro then
        printfn "S"
    else if sum < pro then
        printfn "P"
    else 
        printfn "E"

    ()
No441 ()
0