結果
問題 | No.809 かけ算 |
ユーザー | ohreitetsu |
提出日時 | 2019-04-12 21:46:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 235 bytes |
コンパイル時間 | 806 ms |
コンパイル使用メモリ | 63,232 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-14 17:56:21 |
合計ジャッジ時間 | 4,385 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
ソースコード
#include <iostream> using namespace std; typedef long long LL; int main(int argc, char* argv[]) { LL C,i; cin>>C; for (i=2;i<C;i++){ if (C%i==0){ cout<<i<<" "<<C/i<<endl; return 0; } } cout<<1<<" "<<C<<endl; return 0; }