답안 #1078342

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1078342 2024-08-27T15:38:07 Z kilikuma 철인 이종 경기 (APIO18_duathlon) C++17
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>
 
using namespace std;
 
int main() {
	ios_base::sync_with_stdio(0);
	cin.tie(0):
	cout.tie(0);
 
	int n; cin >> n;
 
	cout << ((n * (n - 1) * (n - 2)) / 6) * 2 << '\n'; 
 
}

Compilation message

count_triplets.cpp: In function 'int main()':
count_triplets.cpp:7:12: error: expected ';' before ':' token
    7 |  cin.tie(0):
      |            ^
      |            ;