結果

問題 No.1415 100の倍数かつ正整数(1)
ユーザー private-dev-acctprivate-dev-acct
提出日時 2021-05-05 12:49:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,228 bytes
コンパイル時間 1,995 ms
コンパイル使用メモリ 198,436 KB
実行使用メモリ 4,368 KB
最終ジャッジ日時 2023-10-11 05:14:01
合計ジャッジ時間 3,288 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

#define _CRT_SECURE_NO_WARINGS
#define INIT ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0)
#define ALL(obj) (obj).begin(),(obj).end()
#define SORT(obj) sort(ALL(obj))
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define coutALL(x) for(auto i=x.begin();i!=--x.end();i++)cout<<*i<<" ";cout<<*--x.end()<<endl;

using ll = long long;
using P = pair<int, int>;
using VI = vector<int>;
using VP = vector<P>;

const int INF = 1e9;
const int MOD = 1e9 + 7;
const ll LINF = 1e18;
const double PI = 3.14159265358979323846;

template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; }

template<typename T>
istream& operator >> (istream& is, vector<T>& vec) {for (T& x : vec) is >> x;return is;}
template<typename T>
ostream& operator << (ostream& os, vector<T>& vec) {
	for (int i = 0; i < vec.size(); i++) { os << vec[i] << (i + 1 == vec.size() ? "" : " "); }
	return os;}

signed main()
{
	INIT; // 必須
	string s;
	cin >> s;
	if (s[0] == '-' or s.length() <= 2) cout << 0 << "\n";
	else {
		int L = s.length();
		cout << s.substr(0, L - 2) << "\n";
	}

}
0