結果

問題 No.1185 完全な3の倍数
ユーザー tyawanmusityawanmusi
提出日時 2020-08-22 17:09:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-03 10:36:32
合計ジャッジ時間 9,158 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 195 ms
10,752 KB
testcase_01 AC 177 ms
10,880 KB
testcase_02 AC 180 ms
10,624 KB
testcase_03 AC 195 ms
10,752 KB
testcase_04 AC 195 ms
10,880 KB
testcase_05 AC 204 ms
10,624 KB
testcase_06 AC 193 ms
10,624 KB
testcase_07 AC 193 ms
10,752 KB
testcase_08 AC 201 ms
10,752 KB
testcase_09 AC 179 ms
10,752 KB
testcase_10 AC 179 ms
10,880 KB
testcase_11 AC 178 ms
10,624 KB
testcase_12 AC 183 ms
10,752 KB
testcase_13 AC 175 ms
10,624 KB
testcase_14 AC 179 ms
10,752 KB
testcase_15 AC 182 ms
10,624 KB
testcase_16 AC 175 ms
10,752 KB
testcase_17 AC 181 ms
10,752 KB
testcase_18 AC 180 ms
10,880 KB
testcase_19 AC 183 ms
10,752 KB
testcase_20 AC 197 ms
10,880 KB
testcase_21 AC 184 ms
10,752 KB
testcase_22 AC 188 ms
10,752 KB
testcase_23 AC 198 ms
10,752 KB
testcase_24 AC 197 ms
10,624 KB
testcase_25 AC 177 ms
10,752 KB
testcase_26 AC 194 ms
10,880 KB
testcase_27 AC 190 ms
10,752 KB
testcase_28 AC 191 ms
10,880 KB
testcase_29 AC 188 ms
10,880 KB
testcase_30 AC 195 ms
10,752 KB
testcase_31 AC 179 ms
10,880 KB
testcase_32 AC 206 ms
10,752 KB
testcase_33 AC 185 ms
10,624 KB
testcase_34 AC 193 ms
10,880 KB
testcase_35 AC 211 ms
10,624 KB
testcase_36 AC 207 ms
10,752 KB
testcase_37 AC 199 ms
10,624 KB
testcase_38 AC 193 ms
10,880 KB
testcase_39 AC 179 ms
10,624 KB
testcase_40 AC 177 ms
10,752 KB
testcase_41 AC 185 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ans=0
for i in range(10,min(100,n+1)):
  if i%3==0:ans+=1
for i0 in range(0,10**9,3*10**8):
  for i1 in range(0,10**8,3*10**7):
    for i2 in range(0,10**7,3*10**6):
      for i3 in range(0,10**6,3*10**5):
        for i4 in range(0,10**5,3*10**4):
          for i5 in range(0,10**4,3*10**3):
            for i6 in range(0,10**3,3*10**2):
              for i7 in range(0,10**2,3*10**1):
                for i8 in range(0,10**1,3**10**0):
                  s=i0+i1+i2+i3+i4+i5+i6+i7+i8
                  if 100<=s<=n:ans+=1
print(ans)
0