結果
問題 | No.571 3人兄弟(その2) |
ユーザー | cww |
提出日時 | 2017-10-08 21:31:49 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 6 ms / 2,000 ms |
コード長 | 781 bytes |
コンパイル時間 | 2,365 ms |
コンパイル使用メモリ | 213,456 KB |
実行使用メモリ | 7,296 KB |
最終ジャッジ日時 | 2024-11-17 05:48:21 |
合計ジャッジ時間 | 3,040 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
7,296 KB |
testcase_01 | AC | 5 ms
7,168 KB |
testcase_02 | AC | 5 ms
7,168 KB |
testcase_03 | AC | 5 ms
7,168 KB |
testcase_04 | AC | 5 ms
7,168 KB |
testcase_05 | AC | 5 ms
7,168 KB |
testcase_06 | AC | 5 ms
7,168 KB |
testcase_07 | AC | 5 ms
7,168 KB |
testcase_08 | AC | 5 ms
7,040 KB |
testcase_09 | AC | 6 ms
7,168 KB |
testcase_10 | AC | 5 ms
7,168 KB |
testcase_11 | AC | 5 ms
7,168 KB |
testcase_12 | AC | 5 ms
7,168 KB |
testcase_13 | AC | 5 ms
7,168 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,n) for(int i=0; i<(n); i++) #define REP2(i,x,n) for(int i=x; i<(n); i++) #define ALL(n) begin(n),end(n) struct cww{cww(){ios::sync_with_stdio(false);cin.tie(0);}}star; vector<vector<int>> memo( 100 + 1, vector<int>( 10000 + 1, -1 ) ); int main() { vector<tuple<int, int, int>> vc; REP( i, 3 ) { int h, w; cin >> h >> w; vc.emplace_back( make_tuple( h, w, i ) ); } sort( ALL( vc ), []( const auto &x, const auto &y ) { return get<0>( x ) == get<0>( y ) ? get<1>( x ) < get<1>( y ) : get<0>( x ) > get<0>( y ); }); for( auto x : vc ) { cout << ( get<2>( x ) == 0 ? "A" : get<2>( x ) == 1 ? "B" : "C" ) << endl; } return 0; }