結果

問題 No.809 かけ算
ユーザー wanjing8wanjing8
提出日時 2019-06-19 01:52:01
言語 C++11
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 217 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 22,400 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-30 07:57:36
合計ジャッジ時間 4,094 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 WA -
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 0 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 TLE -
testcase_06 AC 1 ms
6,400 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:5:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 |   scanf("%d",&answer);
      |   ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>

int main(void){
  int a,b,answer;
  scanf("%d",&answer);

  for(int i=2;i<=answer;i++){
    if(answer%i==0){
      a=i;
      b=answer/a;
      break;
    }
  }
  printf("%d %d",a,b);
  return 0;
}
0