結果
| 問題 |
No.128 お年玉(1)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-08-10 02:40:11 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 129 bytes |
| コンパイル時間 | 658 ms |
| コンパイル使用メモリ | 61,864 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-10-01 10:38:49 |
| 合計ジャッジ時間 | 3,215 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 5 RE * 16 |
ソースコード
#include <iostream>
using namespace std;
int main(){
int n,m;
cin >> n >> m;
cout << div(div(n, m).quot,1000).quot*1000;
}