結果
問題 | No.809 かけ算 |
ユーザー | shidoro_onn |
提出日時 | 2019-06-17 22:56:45 |
言語 | C (gcc 12.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 352 bytes |
コンパイル時間 | 1,067 ms |
コンパイル使用メモリ | 28,544 KB |
実行使用メモリ | 13,636 KB |
最終ジャッジ日時 | 2024-11-29 04:26:21 |
合計ジャッジ時間 | 4,917 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,636 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | TLE | - |
testcase_06 | AC | 1 ms
8,228 KB |
ソースコード
#include <stdio.h> int main(void){ int num=0; scanf("%d",&num); if(num==0){ printf("0 0"); } else if(num==1){ printf("1 1"); } else { int i=2; int A=0; while(i<=num){ if(num%i==0){ A = i; break; } i++; } printf("%d %d",A,num/A); } }