結果
問題 | No.809 かけ算 |
ユーザー | dietposter |
提出日時 | 2019-04-19 03:24:03 |
言語 | C (gcc 12.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 412 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 27,392 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-22 11:20:33 |
合計ジャッジ時間 | 2,334 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
ソースコード
#include<stdio.h> //被除数は分子 (英: numerator)、除数は分母 (英: denominator) に対応する。 void main(void){ int i, n, mod, numerator, denominator; scanf("%d", &n); for(i=0; i<n; i++){ mod = n % i; if(mod == 0){ numerator = i; break; } } denominator = n / numerator; printf("%d %d", numerator, denominator); }