結果

問題 No.1415 100の倍数かつ正整数(1)
ユーザー kit84kit84
提出日時 2021-03-05 21:24:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 780 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-04-16 08:43:21
合計ジャッジ時間 1,771 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
11,136 KB
testcase_01 AC 34 ms
11,008 KB
testcase_02 AC 36 ms
11,008 KB
testcase_03 AC 35 ms
11,136 KB
testcase_04 AC 35 ms
11,008 KB
testcase_05 AC 35 ms
11,008 KB
testcase_06 AC 34 ms
11,008 KB
testcase_07 AC 34 ms
11,136 KB
testcase_08 AC 35 ms
11,008 KB
testcase_09 AC 34 ms
11,008 KB
testcase_10 AC 34 ms
11,008 KB
testcase_11 AC 34 ms
11,264 KB
testcase_12 AC 34 ms
11,008 KB
testcase_13 AC 35 ms
11,136 KB
testcase_14 AC 34 ms
11,136 KB
testcase_15 AC 34 ms
11,008 KB
testcase_16 AC 34 ms
11,136 KB
testcase_17 AC 35 ms
11,008 KB
testcase_18 AC 34 ms
11,136 KB
testcase_19 AC 33 ms
11,008 KB
testcase_20 AC 35 ms
11,008 KB
testcase_21 AC 34 ms
11,008 KB
testcase_22 AC 34 ms
11,008 KB
testcase_23 AC 34 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
enum = enumerate
inf = 1001001001
MOD = 10**9 + 7

import collections as cl
import itertools as it
import random
from bisect import bisect_right as bs_r

def linput(ty=int, cvt=list):
	return cvt(map(ty,input().split()))

def vinput(rep=1, ty=int, cvt=list):
	return cvt(ty(input().rstrip()) for _ in range(rep))

def drint(*v, **d):
	if 1: print(*v, **d, file=sys.stderr)

def dist(x1,y1,x2,y2):
	return abs(x1-x2)+abs(y1-y2)

#vD = [chr(ord("a")+i) for i in range(26)]
vD = [(-1,0),(0,-1),(0,1),(1,0)]
vT = "0123456789"

def bye(res):
	sT = "No Yes".split()
	print(sT[res])
	#exit(0)


def main():
	N, = linput()
	
	res = N // 100
	if res<0: res = 0
	
	#for vr in mR:
	#	print(*vr, sep="")
	print(res)

	
if __name__ == "__main__":
	main()
0