답안 #951295

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
951295 2024-03-21T14:58:31 Z NourWael Firefighting (NOI20_firefighting) C++17
0 / 100
8 ms 14940 KB
#include <bits/stdc++.h>
#define int long long
using namespace std; 
int const mxN = 3e5+5;
int n; 
vector<pair<int,int>> adj [mxN];
signed main() {
  
  ios_base::sync_with_stdio(0); cin.tie(NULL); cout.tie(NULL);
 
   cin>>n;
   for(int i=0; i<n-1; i++) {
      int a,b,c; cin>>a>>b>>c;
      adj[a].push_back({b,c}), adj[b].push_back({a,c});
   }

   cout<<n<<'\n';
   for(int i=1; i<=n; i++) cout<<i<<' ';

   return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 8 ms 14828 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 7260 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 7256 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 8 ms 14684 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 8 ms 14940 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 7 ms 14680 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -