結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー Yug_min_nullYug_min_null
提出日時 2021-12-24 19:50:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 2,139 ms
コンパイル使用メモリ 201,804 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-09-20 03:24:19
合計ジャッジ時間 9,020 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 6 ms
6,944 KB
testcase_05 AC 7 ms
6,944 KB
testcase_06 AC 7 ms
6,940 KB
testcase_07 AC 7 ms
6,940 KB
testcase_08 AC 7 ms
6,940 KB
testcase_09 AC 8 ms
6,944 KB
testcase_10 AC 7 ms
6,940 KB
testcase_11 AC 6 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 103 ms
6,944 KB
testcase_33 AC 79 ms
6,940 KB
testcase_34 AC 153 ms
7,424 KB
testcase_35 AC 134 ms
7,040 KB
testcase_36 AC 164 ms
7,680 KB
testcase_37 AC 84 ms
6,944 KB
testcase_38 AC 85 ms
6,940 KB
testcase_39 AC 171 ms
7,808 KB
testcase_40 AC 113 ms
6,944 KB
testcase_41 AC 155 ms
7,680 KB
testcase_42 AC 100 ms
6,944 KB
testcase_43 AC 115 ms
6,948 KB
testcase_44 AC 135 ms
7,424 KB
testcase_45 AC 111 ms
6,944 KB
testcase_46 AC 180 ms
8,064 KB
testcase_47 AC 48 ms
6,948 KB
testcase_48 AC 103 ms
6,944 KB
testcase_49 AC 178 ms
8,192 KB
testcase_50 AC 99 ms
6,944 KB
testcase_51 AC 87 ms
6,944 KB
testcase_52 AC 232 ms
10,496 KB
testcase_53 AC 225 ms
10,496 KB
testcase_54 AC 300 ms
14,464 KB
testcase_55 AC 320 ms
14,464 KB
testcase_56 AC 310 ms
14,464 KB
testcase_57 AC 315 ms
14,336 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:12: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts'
    7 | void print(auto a){
      |            ^~~~
main.cpp:11:13: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts'
   11 | void prints(auto a){
      |             ^~~~
main.cpp:15:13: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts'
   15 | void printL(auto a){
      |             ^~~~

ソースコード

diff #

#define _GLIBCXX_DEBUG
#define ll long long
#include <bits/stdc++.h>
using namespace std;
using Graph = vector<vector<int>>;

void print(auto a){
  cout << a;
}

void prints(auto a){
  cout << a << " ";
}

void printL(auto a){
  cout << a << endl;
}

void printL(){
  cout << endl;
}

void fix(int n){
  cout << fixed << setprecision(n);
}

int siz(string s){
  return (int)s.size();
}

int main() {
  int N, M; cin >> N >> M;
  map<string, int> mp;
  for(int i = 0; i < N+M; i++){
    string S; cin >> S;
    int A; cin >> A;
    mp[S] = A;
  }
  for(auto p: mp){
    prints(p.first);
    printL(p.second);
  }
}
0