結果

問題 No.687 E869120 and Constructing Array 1
ユーザー dong_fengdong_feng
提出日時 2018-06-07 23:25:21
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 169 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 26,552 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-12 23:10:48
合計ジャッジ時間 3,803 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 OLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main(void){
    int sum;
    scanf("%d",&sum);
    
    while(sum>10){
        printf("10 ");
    }
    printf("%d\n",sum);
    
    return 0;
}
0