#include using namespace std; namespace { int n; int w; long long h; long long T[ 100010 ]; bool R[ 100010 ]; int a; int b; int x; } int main( int argc, char *argv[] ) { int i; int j; int iA; int iB; int iCnt; int iEnd; ios::sync_with_stdio( false ); // ε…₯εŠ› cin >> n; cin >> w; cin >> h; iA = 0; iB = 0; iCnt = w; for( i = 0; i < n; i++ ) { cin >> a; cin >> b; cin >> x; iEnd = a + x; for( j = x; j < iEnd; j++ ) { if( ! R[ j ] ) { T[ j ] += b; if( T[ j ] >= h ) { R[ j ] = true; if( i % 2 == 0 ) iA++; else iB++; iCnt--; if( iCnt == 0 ) break; } } } if( iCnt == 0 ) break; } // ε‡ΊεŠ› if( iA > iB ) cout << "A" << endl; else if( iA < iB ) cout << "B" << endl; else cout << "DRAW" << endl; return 0; }