結果
問題 | No.1415 100の倍数かつ正整数(1) |
ユーザー | Yoshiki |
提出日時 | 2021-03-22 22:45:26 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,485 bytes |
コンパイル時間 | 67 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 17,700 KB |
最終ジャッジ日時 | 2024-05-03 11:54:36 |
合計ジャッジ時間 | 3,789 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
# coding: utf-8 #http://www.practicepython.org/ """practice01""" # name = input("Give me your name: ") # year = int(input("Give me your year: ")) # sub = (100 - year) + 2020 # print("Your are name is" + name) # print(f"100歳になるのは、{sub}年です。") """practice02""" # num = int(input("What is your number ? :")) # if num == 4: # print("4の倍数です.") # elif num % 2 == 0: # print("偶数です") # else: # print("奇数です") # # check = int(input("what's sub number : ")) # if num % check == 0: # print("割り切れました") # else: # print("割り切れません") """practice03""" # list = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] # list_new = [] # N = int(input("number : ")) # for i in range(len(list)): # print(list[i]) # num = list[i-1] # # if num < 5: # # list_new.append(num) # if num < N: # list_new.append(num) # print("---------------------") # for j in range(len(list_new)): # print(list_new[j]) """practice04""" # num = int(input("number : ")) # yakusulist = [] # for i in range(1, num+1): # if num % i == 0: # yakusulist.append(i) # print(yakusulist) """practice05""" # import random # def main(): # list1 = [] # list2 = [] # ans = [] # for i in range(10): # N = random.randrange(1,11) # list1.append(N) # for i in range(12): # N = random.randrange(1,11) # list2.append(N) # if len(list1) > len(list2): # list_num = len(list2) # else: # list_num = len(list1) # for j in range(0, list_num-1): # if list1[j] in list2: # ans.append(list1[j]) # print(list1) # print(list2) # print(ans) # if __name__ == "__main__": # main() """practice06""" # def main(): # str = input("String: ") #URL:https://yukicoder.me """No.1432 Not Xor""" # str = "1 2" # str = str.split() # si = [int(s) for s in str] # A = print(si[0]) # B = print(si[1]) # if A in B: # And_i = A # else: # And_i = B # if A > B: # Or_i = A # else: # Or_i = B # print(Or_i+And_i) #正解 # A, B = map(int, input().split()) # print((A|B)+(A&B)) """No.1415 100の倍数かつ正整数(1)""" N = int(input("number : ")) counter = 0 if N <= 10**100 and N >= -10**100: for i in range(N+1): if i % 100 == 0 and i > 0: counter += 1 print(counter)