結果
問題 |
No.128 お年玉(1)
|
ユーザー |
👑 |
提出日時 | 2019-03-19 17:53:16 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 236 bytes |
コンパイル時間 | 538 ms |
コンパイル使用メモリ | 59,600 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-10-01 11:00:26 |
合計ジャッジ時間 | 3,270 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 5 RE * 16 |
ソースコード
#include <iostream> #include <cstdlib> #include <string> #include <vector> #include <algorithm> int main() { std::string s; int n, m; std::cin >> n >> m; std::cout << (n / 1000 / m) * 1000 << std::endl; return 0; }