結果
| 問題 | No.188 HAPPY DAY |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-10-18 17:15:49 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 95 ms / 1,000 ms |
| コード長 | 202 bytes |
| 記録 | |
| コンパイル時間 | 660 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 15,228 KB |
| 最終ジャッジ日時 | 2026-05-06 22:59:15 |
| 合計ジャッジ時間 | 1,457 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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)