結果

問題 No.601 Midpoint Erase
ユーザー pekempeypekempey
提出日時 2017-12-01 00:31:15
言語 Bash
(Bash 5.1.16)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 109 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 8,896 KB
最終ジャッジ日時 2023-08-24 18:34:09
合計ジャッジ時間 3,018 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
外部呼び出し有り
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
4,376 KB
testcase_01 AC 12 ms
4,380 KB
testcase_02 AC 13 ms
4,376 KB
testcase_03 AC 124 ms
6,304 KB
testcase_04 AC 137 ms
7,512 KB
testcase_05 AC 102 ms
5,532 KB
testcase_06 AC 61 ms
4,380 KB
testcase_07 AC 131 ms
7,100 KB
testcase_08 AC 114 ms
6,672 KB
testcase_09 AC 136 ms
6,544 KB
testcase_10 AC 38 ms
4,384 KB
testcase_11 AC 186 ms
8,896 KB
testcase_12 AC 88 ms
5,168 KB
testcase_13 AC 11 ms
4,376 KB
testcase_14 AC 12 ms
4,376 KB
testcase_15 AC 11 ms
4,376 KB
testcase_16 AC 11 ms
4,376 KB
testcase_17 AC 12 ms
4,380 KB
testcase_18 AC 11 ms
4,380 KB
testcase_19 AC 12 ms
4,376 KB
testcase_20 AC 11 ms
4,380 KB
testcase_21 AC 12 ms
4,376 KB
testcase_22 AC 11 ms
4,380 KB
testcase_23 AC 11 ms
4,380 KB
testcase_24 AC 12 ms
4,376 KB
testcase_25 AC 12 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

read;awk '{print $1%2$2%2}' | sort | uniq -c | awk 'BEGIN{s=0}{s+=int($1/2)}END{print s%2==1?"Alice":"Bob"}'
0