結果

問題 No.1256 連続整数列
ユーザー thglaflsthglafls
提出日時 2023-04-30 18:03:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 124 bytes
コンパイル時間 4,951 ms
コンパイル使用メモリ 150,272 KB
実行使用メモリ 24,704 KB
最終ジャッジ日時 2023-08-12 08:43:52
合計ジャッジ時間 9,318 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
24,556 KB
testcase_01 AC 78 ms
22,596 KB
testcase_02 AC 77 ms
24,604 KB
testcase_03 AC 77 ms
24,648 KB
testcase_04 AC 78 ms
22,644 KB
testcase_05 AC 78 ms
24,696 KB
testcase_06 AC 78 ms
24,600 KB
testcase_07 AC 79 ms
22,584 KB
testcase_08 AC 77 ms
20,540 KB
testcase_09 AC 77 ms
22,600 KB
testcase_10 AC 78 ms
22,768 KB
testcase_11 AC 77 ms
22,712 KB
testcase_12 AC 77 ms
22,724 KB
testcase_13 AC 77 ms
22,728 KB
testcase_14 AC 79 ms
22,724 KB
testcase_15 AC 78 ms
22,596 KB
testcase_16 AC 78 ms
22,536 KB
testcase_17 AC 78 ms
22,508 KB
testcase_18 AC 78 ms
22,580 KB
testcase_19 AC 77 ms
22,660 KB
testcase_20 AC 77 ms
22,592 KB
testcase_21 AC 79 ms
22,600 KB
testcase_22 AC 78 ms
22,724 KB
testcase_23 AC 78 ms
24,556 KB
testcase_24 AC 77 ms
22,656 KB
testcase_25 AC 78 ms
24,704 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

let calc n = if n = 1 then "NO" else "YES"

let main =
    let input = stdin.ReadLine() |> int
    printfn "%s" (calc input)
0