Skip to content

Commit

Permalink
Create μ‹œκ°.py
Browse files Browse the repository at this point in the history
  • Loading branch information
wnsmir committed Jan 26, 2025
1 parent 3cc8431 commit 63761a9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions wnsmir/κ΅¬ν˜„/μ‹œκ°.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
n = int(input())
sum = 0

for i in range(n + 1):
for j in range(60):
for k in range(60):
if '3' in str(i) or '3' in str(j) or '3' in str(k):
sum += 1

print(sum)

0 comments on commit 63761a9

Please sign in to comment.