結果

問題 No.8042 本棚
ユーザー Tiramister
提出日時 2019-04-01 21:20:27
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 1,159 ms
コンパイル使用メモリ 87,160 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 01:41:47
合計ジャッジ時間 2,019 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>

int main() {
    int N;
    std::cin >> N;
    std::vector<std::pair<std::string, std::string>> books(N);
    for (auto& b : books) std::cin >> b.first >> b.second;

    std::sort(books.begin(), books.end());
    for (auto b : books) {
        std::cout << b.first << " " << b.second << std::endl;
    }
}
0