結果
| 問題 | No.809 かけ算 |
| コンテスト | |
| ユーザー |
matecha
|
| 提出日時 | 2019-05-09 15:53:05 |
| 言語 | C++11 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 279 bytes |
| 記録 | |
| コンパイル時間 | 81 ms |
| コンパイル使用メモリ | 37,504 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-08-03 16:10:53 |
| 合計ジャッジ時間 | 3,496 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 6 |
ソースコード
#include <stdio.h>
int main(void){
printf("C: 1 <= C <= 10^10\n");
int c ;
scanf("%d",&c);
for(int i = 2; i <= c; i++){
int number = c % i;
if(number == 0){
printf("%d * %d \n",i,c/i);
break;
}
}
}
matecha