結果

問題 No.1040 垂直大学
ユーザー みっちみっち
提出日時 2020-11-19 19:02:19
言語 F#
(F# 4.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 3,644 ms
コンパイル使用メモリ 163,996 KB
実行使用メモリ 24,708 KB
最終ジャッジ日時 2023-09-30 16:25:22
合計ジャッジ時間 6,300 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
22,696 KB
testcase_01 AC 80 ms
22,676 KB
testcase_02 AC 80 ms
24,668 KB
testcase_03 AC 80 ms
22,636 KB
testcase_04 AC 83 ms
22,672 KB
testcase_05 AC 80 ms
24,700 KB
testcase_06 AC 80 ms
24,708 KB
testcase_07 AC 80 ms
22,708 KB
testcase_08 AC 80 ms
22,628 KB
testcase_09 AC 79 ms
22,684 KB
testcase_10 AC 79 ms
22,748 KB
testcase_11 AC 81 ms
22,632 KB
testcase_12 AC 79 ms
22,684 KB
testcase_13 AC 81 ms
22,648 KB
testcase_14 AC 81 ms
22,624 KB
testcase_15 AC 80 ms
22,804 KB
testcase_16 AC 80 ms
22,632 KB
testcase_17 AC 81 ms
24,608 KB
testcase_18 AC 81 ms
22,700 KB
testcase_19 AC 79 ms
22,704 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

open System

[<EntryPoint>]
let main argv =
    Console.ReadLine() |> int |> (fun x -> if x % 180 = 90 then "Yes" else "No") |> printfn "%s"
    0
0