結果
問題 | No.1942 Leading zero |
ユーザー | myiru |
提出日時 | 2022-05-24 21:49:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 729 bytes |
コンパイル時間 | 1,796 ms |
コンパイル使用メモリ | 169,492 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-20 14:31:31 |
合計ジャッジ時間 | 2,225 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n;string s[10001]; for(int i=0;i<n;i++){cin>>s[i]; if(s[i].at(0)==0&&s[i].at(1)==0&&s[i].at(2)==0&&s[i].at(3)==0&&s[i].at(4)==0) {cout<<"0"<<endl;} else if(s[i].at(0)==0&&s[i].at(1)==0&&s[i].at(2)==0&&s[i].at(3)==0) {cout<<s[i].at(4)<<endl;} else if(s[i].at(0)==0&&s[i].at(1)==0&&s[i].at(2)==0) {cout<<s[i].at(3)<<s[i].at(4)<<endl;} else if(s[i].at(0)==0&&s[i].at(1)==0) {cout<<s[i].at(2)<<s[i].at(3)<<s[i].at(4)<<endl;} else if(s[i].at(0)==0) {cout<<s[i].at(1)<<s[i].at(2)<<s[i].at(3)<<s[i].at(4)<<endl;} else{cout<<s[i]<<endl;} } return 0; }