結果

問題 No.188 HAPPY DAY
ユーザー gmgmgmgmgmg8
提出日時 2018-10-20 20:01:58
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 1,000 ms
コード長 212 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-11-19 02:44:14
合計ジャッジ時間 756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

cou = 0
for i in range(1,13):
    for n in range(1,31):
        if n<10:
            if n == i:
                cou=cou+1
        else:
            if i == (n//10)+(n%10):
                cou = cou + 1
print(cou)
0