結果
| 問題 | No.188 HAPPY DAY | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2018-10-18 17:15:49 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 31 ms / 1,000 ms | 
| コード長 | 202 bytes | 
| コンパイル時間 | 196 ms | 
| コンパイル使用メモリ | 12,672 KB | 
| 実行使用メモリ | 10,752 KB | 
| 最終ジャッジ日時 | 2024-11-06 18:06:16 | 
| 合計ジャッジ時間 | 753 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 1 | 
ソースコード
d = [i+1 for i in range(30)]
d1 = ['{:0=2}'.format(i) for i in d]
d2 = [int(i[0]) + int(i[1]) for i in d1]
x = 0
for i in range(1, 13):
    for j in d2:
        if i == j:
            x += 1
print(x)
            
            
            
        