結果

問題 No.414 衝動
ユーザー Naoyk1212Naoyk1212
提出日時 2016-10-06 23:24:02
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 398 bytes
コンパイル時間 1,644 ms
コンパイル使用メモリ 157,664 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-11-21 19:00:22
合計ジャッジ時間 22,061 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 2 ms
10,624 KB
testcase_02 AC 2 ms
8,320 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 2 ms
10,624 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 2 ms
8,448 KB
testcase_11 TLE -
testcase_12 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
  long long m;
  cin >> m;
  long long x, y;
  bool f = false;
  for(long long i = 2; i < m / 2; i++){
    for(long long j = 2; j < m / 2; j++){
      if(i * j == m){
        cout << i << " " << j << endl;
        f = true;
        break;
      }
    }
    if(f == true)break;
  }
  if(f == false){
    cout << 1 << " " << m << endl;
  }
} 
0