結果
| 問題 |
No.8078 Very Simple Traveling Salesman Problem
|
| コンテスト | |
| ユーザー |
arashin
|
| 提出日時 | 2021-04-01 22:13:31 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 75 ms / 2,000 ms |
| コード長 | 292 bytes |
| コンパイル時間 | 2,488 ms |
| コンパイル使用メモリ | 168,892 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-21 06:33:52 |
| 合計ジャッジ時間 | 2,409 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 10 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
using u64 = uint_least64_t;
using s64 = int_least64_t;
using ll = uint_least64_t;
int main(){
int n,m;
cin >> n >> m;
vector<int> u(m),v(m),w(m);
for (int i = 0; i < m; i++){
cin >> u[i] >> v[i] >> w[i];
}
cout << n << endl;
return 0;
}
arashin