本記事は管理人が競技プログラミングを始めたため,その精進日記としてログを取ったものです。アウトプットして積極的にモチベーションを上げていく作戦です。記事目次は以下をご覧ください。
【競プロ精進日記】目次まとめ
ABC
Atcoder Beginner Contestの過去問を解いています。最低限のコメントと一言が添えられています。
...
スポンサーリンク
AtCoder Beginners Selection
AtCoder Beginners Selectionの問題を1から解いていくシリーズです。使用言語はc++とpythonです。今回はPracticeA – Welcome to AtCoderです。
c++
#include <bits/stdc++.h>
#define _GLIBCXX_DEBUG
using namespace std;
int main() {
int a, b, c;
string s;
cin >> a >> b >> c >> s;
// 出力するだけ
cout << a + b + c << " " << s << endl;;
}
入力を1個受け取る方法,2個受け取る方法,型を指定する方法に関する問題でした。標準入力の扱いには慣れておきたいところです。
python
a = int(input())
b, c = map(int, input().split())
s = input()
# 出力するだけ
output = str(a + b + c) + " " + s
print(output)
pythonも同様です。