結果
| 問題 | No.601 Midpoint Erase |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-12-22 16:22:46 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
AC
|
| 実行時間 | 89 ms / 2,000 ms |
| + 550µs | |
| コード長 | 246 bytes |
| 記録 | |
| コンパイル時間 | 68 ms |
| コンパイル使用メモリ | 80,512 KB |
| 実行使用メモリ | 84,224 KB |
| 最終ジャッジ日時 | 2026-07-18 17:04:04 |
| 合計ジャッジ時間 | 3,541 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 23 |
ソースコード
#yuki_601 n=int(raw_input()) oe=[[0 for i in xrange(2)] for j in xrange(2)] for i in xrange(n): x,y=map(int,raw_input().split()) oe[x%2][y%2]+=1 res=0 for i in xrange(2): for j in xrange(2): res+=oe[i][j]/2 print 'Alice' if res%2 else 'Bob'