結果
問題 | No.5020 Averaging |
ユーザー |
|
提出日時 | 2024-02-25 13:08:29 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 383 bytes |
コンパイル時間 | 2,107 ms |
コンパイル使用メモリ | 204,076 KB |
実行使用メモリ | 6,676 KB |
スコア | 12,719,802 |
最終ジャッジ日時 | 2024-02-25 13:08:33 |
合計ジャッジ時間 | 3,990 ms |
ジャッジサーバーID (参考情報) |
judge13 / judge15 |
純コード判定しない問題か言語 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 50 |
ソースコード
#include <bits/stdc++.h>using namespace std;struct card{long surface;long back;};int main(){int n;cin >> n;assert(n==45);vector<card> cards(n);for(int i=0;i<n;i++){cin >> cards[i].surface >> cards[i].back;}vector<pair<int,int>> V;cout << V.size() << endl;for(pair<int,int> v:V){cout << v.first << ' ' << v.second << endl;}return EXIT_SUCCESS;}