結果

問題 No.1506 Unbalanced Pocky Game
ユーザー natoriusannatoriusan
提出日時 2023-07-31 18:26:42
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 252 bytes
コンパイル時間 6,632 ms
コンパイル使用メモリ 189,208 KB
実行使用メモリ 53,220 KB
最終ジャッジ日時 2024-10-10 11:49:58
合計ジャッジ時間 14,238 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
30,336 KB
testcase_01 AC 68 ms
30,592 KB
testcase_02 AC 68 ms
30,336 KB
testcase_03 AC 73 ms
33,292 KB
testcase_04 AC 94 ms
41,564 KB
testcase_05 AC 97 ms
41,856 KB
testcase_06 AC 89 ms
39,196 KB
testcase_07 AC 83 ms
34,944 KB
testcase_08 AC 92 ms
39,648 KB
testcase_09 AC 97 ms
42,112 KB
testcase_10 AC 98 ms
42,240 KB
testcase_11 AC 83 ms
35,192 KB
testcase_12 AC 82 ms
36,828 KB
testcase_13 AC 78 ms
32,768 KB
testcase_14 WA -
testcase_15 AC 82 ms
34,688 KB
testcase_16 AC 95 ms
41,984 KB
testcase_17 AC 87 ms
36,224 KB
testcase_18 AC 81 ms
33,792 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 69 ms
30,336 KB
testcase_24 AC 71 ms
30,464 KB
testcase_25 AC 103 ms
45,184 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 113 ms
52,360 KB
testcase_29 AC 112 ms
52,508 KB
testcase_30 WA -
testcase_31 AC 113 ms
53,084 KB
testcase_32 WA -
testcase_33 AC 114 ms
52,668 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 73 ms
30,464 KB
testcase_37 WA -
testcase_38 AC 73 ms
30,464 KB
testcase_39 WA -
testcase_40 AC 74 ms
30,464 KB
testcase_41 WA -
testcase_42 AC 72 ms
30,592 KB
testcase_43 AC 73 ms
30,716 KB
testcase_44 AC 71 ms
30,464 KB
testcase_45 AC 72 ms
30,592 KB
testcase_46 AC 94 ms
38,528 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 91 ms
39,680 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 89 ms
39,532 KB
testcase_53 WA -
testcase_54 AC 79 ms
34,432 KB
testcase_55 AC 78 ms
33,536 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 79 ms
35,200 KB
testcase_61 WA -
testcase_62 WA -
testcase_63 AC 80 ms
34,944 KB
testcase_64 AC 89 ms
39,424 KB
testcase_65 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (226 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 #

let n = stdin.ReadLine () |> int
let a = stdin.ReadLine().Split " " |> Array.map int64

a |> Array.mapi (fun index n -> if index % 2 = 0 then 1L elif n > 1L then 2L else 1L) |> Array.sum |> fun x -> printfn "%s" (if x % 2L = 1L then "Alice" else "Bob")
0