結果

問題 No.809 かけ算
ユーザー jack007xxjack007xx
提出日時 2019-04-17 21:50:05
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 277 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 55,732 KB
実行使用メモリ 13,764 KB
最終ジャッジ日時 2024-09-22 08:41:15
合計ジャッジ時間 5,491 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,764 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1,247 ms
6,944 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main(int argc, char const *argv[])
{
    int C;
    cin >> C;
    int n = C-1;
    while(n){
        if(C%n == 0){
            cout << n << ' ' << (int)(C/n) << endl;
            break;
        }
        n--;
    }
    return 0;
}
0