#32105: C++ 短解


d1034181036@gm.lhu.edu.tw (KC)

學校 : 臺北市私立景文高級中學
編號 : 78173
來源 : [211.75.7.57]
最後登入時間 :
2022-09-14 11:41:58
c290. APCS 2017-0304-1秘密差 -- 2017年3月APCS | From: [211.75.7.57] | 發表日期 : 2022-09-14 12:14

#include <bits/stdc++.h>
using namespace std;

int main(){
    ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);

    string s;
    cin >> s;

    int counter = 0;
    for(int i=0, n=s.size(); i<n; i++){
        counter += (i&1) ? s[i]-'0' : -(s[i]-'0');
    }

    cout << abs(counter) << "\n";
}

 
ZeroJudge Forum