結果

問題 No.3078 Very Simple Traveling Salesman Problem
ユーザー kaede2020kaede2020
提出日時 2021-04-01 20:22:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 756 bytes
コンパイル時間 3,892 ms
コンパイル使用メモリ 229,504 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-10 04:58:16
合計ジャッジ時間 4,767 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
//using mint = modint1000000007;
using mint = modint998244353;
template <typename T> bool chmax(T &u, const T z) { if (u < z) {u = z; return true;} else return false; }
template <typename T> bool chmin(T &u, const T z) { if (u > z) {u = z; return true;} else return false; }
#define ll long long
#define rep(i, n) for (ll i = 0; i < (ll)(n); i++)
typedef pair<ll, int> P;
ll gcd(ll x, ll y) { return y ? gcd(y, x % y) : x; }
ll lcm(ll a, ll b){return a * b / gcd(a, b);}

const double PI=acos(-1);
int main(){
    int n,m;
    cin>>n>>m;
    int ans=0;
    rep(i,m){
      int a,b,c;
      cin>>a>>b>>c;
      ans+=c;
    }
    cout<<ans*2<<endl;
    return 0;
}
0