結果
問題 | No.1942 Leading zero |
ユーザー | #leucobird |
提出日時 | 2022-06-16 22:08:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 16 ms / 2,000 ms |
コード長 | 339 bytes |
コンパイル時間 | 610 ms |
コンパイル使用メモリ | 68,288 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-07 05:38:07 |
合計ジャッジ時間 | 960 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 16 ms
6,816 KB |
ソースコード
#include <iostream> #include <string> int main(void) { int32_t N; std::cin >> N; while(N--) { std::string s; std::cin >> s; bool f = false; for(int i=0; i<s.size(); i++) { if (s[i] != '0') f = true; if(f) std::cout << s[i]; } if(!f) std::cout << 0; std::cout << '\n'; } return 0; }