結果

問題 No.1437 01 Sort
ユーザー 江口 昌幸江口 昌幸
提出日時 2021-03-19 23:20:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 684 bytes
コンパイル時間 585 ms
コンパイル使用メモリ 64,000 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-04-29 19:01:50
合計ジャッジ時間 4,395 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;
int main(){
    int N;
    int O = 0;
    string S;
    cin >> N;
    cin >> S;
    for(int i = 0; i < N; i++){
        if(S[N - 1] == '0'){
            for(int j = N - 1; j < 0; j--){
                S[j] = S[j - 1];
            }
            S[0] = '0';
            O++;
        }else{
            int c = 0;
            for(int k = 1; k < N; k ++){
                if(S[k] == '0') c++;
            }
            if(c != 0){
                for(int j = N - 1; j < 1; j--){
                    S[j] = S[j - 1];
                }
                S[1] = '1';
                O++;
            }
        }
    }
    cout << O;
}
0