Recent Posts
Notice
No Rules Rules
수학은 체육과목 입니다 (feat. 백준, 15894번) 본문
728x90
반응형
수학은 체육과목 입니다
https://www.acmicpc.net/problem/15894
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register long long n;
cin >> n, cout << n * 4;
return 0;
}
// *&)*@*
반응형
단순한 수학 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
삼각형 외우기 (feat. 백준, 10101번) (0) | 2023.03.20 |
---|---|
Four Squares (feat. 백준, 17626번) (0) | 2023.03.20 |
수학은 비대면강의입니다 (feat. 백준, 19532번) (0) | 2023.03.20 |
Moocast (feat. 백준, 14167번) (0) | 2023.03.16 |
최소공배수 (feat. 백준, 13241번) (0) | 2023.03.16 |
Comments