結果
問題 |
No.946 箱箱箱
|
ユーザー |
![]() |
提出日時 | 2019-12-09 01:24:12 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 167 bytes |
コンパイル時間 | 354 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 67,072 KB |
最終ジャッジ日時 | 2025-01-03 02:15:42 |
合計ジャッジ時間 | 4,994 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 32 WA * 19 |
ソースコード
n = int(input()) a = [int(input()) for i in range(n)] ans = 0 for i in range(n): ans = ans ^ a[i] if ans == 0: print("Takahashi") else: print("Takanashi")