結果

問題 No.1506 Unbalanced Pocky Game
ユーザー natoriusannatoriusan
提出日時 2023-07-31 18:22:56
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 244 bytes
コンパイル時間 11,503 ms
コンパイル使用メモリ 184,668 KB
実行使用メモリ 51,552 KB
最終ジャッジ日時 2024-10-10 11:46:39
合計ジャッジ時間 20,578 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
30,464 KB
testcase_01 AC 69 ms
30,720 KB
testcase_02 AC 69 ms
30,584 KB
testcase_03 AC 71 ms
31,104 KB
testcase_04 AC 94 ms
40,420 KB
testcase_05 AC 92 ms
40,704 KB
testcase_06 AC 89 ms
38,468 KB
testcase_07 AC 82 ms
34,560 KB
testcase_08 AC 90 ms
38,404 KB
testcase_09 AC 98 ms
40,704 KB
testcase_10 AC 97 ms
40,960 KB
testcase_11 AC 85 ms
34,788 KB
testcase_12 AC 84 ms
34,176 KB
testcase_13 AC 79 ms
32,512 KB
testcase_14 WA -
testcase_15 AC 81 ms
34,048 KB
testcase_16 AC 95 ms
40,576 KB
testcase_17 AC 84 ms
35,456 KB
testcase_18 AC 77 ms
33,536 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 72 ms
30,336 KB
testcase_24 AC 70 ms
30,464 KB
testcase_25 AC 103 ms
43,648 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 109 ms
50,824 KB
testcase_29 AC 111 ms
50,968 KB
testcase_30 WA -
testcase_31 AC 115 ms
51,552 KB
testcase_32 WA -
testcase_33 AC 114 ms
51,384 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 71 ms
30,848 KB
testcase_37 WA -
testcase_38 AC 71 ms
30,592 KB
testcase_39 WA -
testcase_40 AC 69 ms
30,464 KB
testcase_41 WA -
testcase_42 AC 71 ms
30,720 KB
testcase_43 AC 70 ms
30,592 KB
testcase_44 AC 70 ms
30,592 KB
testcase_45 AC 70 ms
30,460 KB
testcase_46 AC 87 ms
38,016 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 92 ms
38,912 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 88 ms
39,156 KB
testcase_53 WA -
testcase_54 AC 82 ms
34,688 KB
testcase_55 AC 77 ms
33,280 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 81 ms
34,808 KB
testcase_61 WA -
testcase_62 WA -
testcase_63 AC 82 ms
34,560 KB
testcase_64 AC 91 ms
39,040 KB
testcase_65 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (284 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 int

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