Submission #00068


ソースコード

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include<stdio.h>
int main(){
int n;
int i=2;
scanf("%d",&n);
while(n!=1){
while(n%i==0){
printf("%d ",i);
n=n/i;
}
i++;
}
printf("\n");
return(0);
}

ステータス

項目 データ
問題 0004 - 東雲なのの憂鬱
ユーザー名 ei1630
投稿日時 2016-07-05 15:29:49
言語 C++11
状態 Wrong Answer
得点 0
ソースコード長 203 Byte
最大実行時間 14 ms
最大メモリ使用量 684 KB

セット

セット 得点 Cases
1 ALL 0 / 90 *

テストケース

ファイル名 状態 実行時間 メモリ使用量 #
input01.txt WA 14 ms 476 KB
1
input02.txt WA 13 ms 460 KB
1
input03.txt WA 10 ms 572 KB
1
input04.txt WA 9 ms 684 KB
1
input05.txt WA 9 ms 540 KB
1