結果

問題 No.830 日本人の9割は90%
ユーザー azurata
提出日時 2019-06-19 19:53:06
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 166 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 26,880 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-30 08:03:33
合計ジャッジ時間 751 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 9 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>

int main(void) {
    int percent;
    scanf("%d", &percent);
    if(0<percent||percent<=10) {
        printf("%d0", percent);
    }
    return 0;
}
0