結果
問題 |
No.128 お年玉(1)
|
ユーザー |
|
提出日時 | 2015-06-25 21:31:50 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 203 bytes |
コンパイル時間 | 1,366 ms |
コンパイル使用メモリ | 158,748 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-10-01 09:59:24 |
合計ジャッジ時間 | 3,809 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 5 RE * 16 |
ソースコード
using namespace std; #include <bits/stdc++.h> #define _ ios_base::sync_with_stdio(0);cin.tie(0); #define __ return EXIT_SUCCESS; int main() { _ int N, M; cin>>N>>M; cout<<(N/M)/1000*1000<<endl; __ }