結果

問題 No.2450 99-like Number
ユーザー TomoyarnTomoyarn
提出日時 2023-09-04 21:33:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 77 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 53,600 KB
最終ジャッジ日時 2024-06-22 19:02:58
合計ジャッジ時間 2,292 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,564 KB
testcase_01 AC 38 ms
52,176 KB
testcase_02 AC 37 ms
52,868 KB
testcase_03 AC 39 ms
52,444 KB
testcase_04 AC 38 ms
53,556 KB
testcase_05 AC 38 ms
52,824 KB
testcase_06 AC 38 ms
51,972 KB
testcase_07 AC 39 ms
52,728 KB
testcase_08 AC 38 ms
52,484 KB
testcase_09 WA -
testcase_10 AC 37 ms
51,960 KB
testcase_11 AC 39 ms
52,112 KB
testcase_12 AC 38 ms
52,048 KB
testcase_13 WA -
testcase_14 AC 38 ms
52,352 KB
testcase_15 AC 38 ms
52,056 KB
testcase_16 AC 39 ms
53,312 KB
testcase_17 AC 38 ms
53,244 KB
testcase_18 AC 37 ms
53,016 KB
testcase_19 AC 38 ms
52,884 KB
testcase_20 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if (N + 1) % 10 == 0:
    print("Yes")
else:
    print("No")
0