結果

問題 No.1415 100の倍数かつ正整数(1)
ユーザー Kanten4205Kanten4205
提出日時 2021-02-21 18:42:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 212 bytes
コンパイル時間 1,557 ms
コンパイル使用メモリ 166,616 KB
実行使用メモリ 4,372 KB
最終ジャッジ日時 2023-10-25 05:47:09
合計ジャッジ時間 3,007 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
	string S;cin>>S;
	if (S.at(0)=='-')cout<<0<<endl;
	else if (S.size()<=2)cout<<0<<endl;
	else for(long long i=0;i<S.size()-2;i++){cout<<S.at(i)<<endl;}
}
0