結果
| 問題 | No.809 かけ算 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-06-29 14:53:38 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 170 bytes |
| 記録 | |
| コンパイル時間 | 416 ms |
| コンパイル使用メモリ | 85,612 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-03-23 09:31:24 |
| 合計ジャッジ時間 | 2,071 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 6 |
ソースコード
#include<iostream>
#include<algorithm>
#include<cmath>
using namespace std;
int main() {
int a,b,c;
cin >> a >> b >> c;
cout << c/b << " ";
cout << c/a << endl;
}