結果

問題 No.1942 Leading zero
ユーザー 👑 Kazun
提出日時 2022-04-11 23:57:29
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 19 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 631 ms
コンパイル使用メモリ 66,692 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-15 23:46:52
合計ジャッジ時間 1,132 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>

using namespace std;

int main(){
    int N,T;
    string S;
    cin >> N;
    while (N){
        cin >> S;
        if (S=="00000"){
            T=0;
        }else{
            while (S[0]=='0'){
                S=S.substr(1,S.size());
            }
            T=stoi(S);
        }
        cout << T << endl;
        N--;
    }
}
0