白駿11719号(ByC++)


質問する


白駿アルゴリズム11719号

これは11718号と何の違いもありませんか?さらに11718の正解率が20%だったのに、なぜ彼は50%だったのだろうか.

コード#コード#

#include <iostream>
#include <string>
using namespace std;

int main() {
    int cnt = 0;
    string s;
    while (cnt < 100) {
        getline(cin, s);
        cout << s << '\n';
        cnt++;
    }
    return 0;
}