結果

問題 No.2450 99-like Number
ユーザー 2475057t2475057t
提出日時 2024-07-09 14:36:03
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 391 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 28,544 KB
実行使用メモリ 13,880 KB
最終ジャッジ日時 2024-07-09 14:36:08
合計ジャッジ時間 4,630 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,880 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
void like(int N){
    int P = N + 1;
    int a = 0;
    while(a == 0){
        if(P%10 == 0){
            P = P / 10;
        }
        else if(P == 1){
            printf("Yes\n");
            a = 1;
        }
        else{
            printf("No\n");
            a = 1;
        }
    }
}

int main(void){
    int N = 0;
    scanf("%d", &N);
    like(N);

    return 0;
}
0