結果
問題 |
No.1415 100の倍数かつ正整数(1)
|
ユーザー |
![]() |
提出日時 | 2022-08-01 10:46:55 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 290 bytes |
コンパイル時間 | 532 ms |
コンパイル使用メモリ | 74,272 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-21 23:13:40 |
合計ジャッジ時間 | 1,240 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 |
ソースコード
#include<iostream> #include<string> #include<vector> #include<algorithm> #include<map> using namespace std; int main() { int cnt=0; string n,m; cin >> n; if (n[0] == '-' or n.length()<3) cout << 0 << endl; else { m = n.erase(n.length() - 2); cout << m << endl; } return 0; }