結果

問題 No.339 何人が回答したのか
ユーザー tonnnura172tonnnura172
提出日時 2020-04-28 23:13:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 813 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-05-04 11:17:56
合計ジャッジ時間 3,471 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,136 KB
testcase_01 AC 30 ms
11,136 KB
testcase_02 AC 31 ms
11,136 KB
testcase_03 AC 29 ms
11,264 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 28 ms
11,136 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 28 ms
11,264 KB
testcase_12 WA -
testcase_13 AC 28 ms
11,136 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 29 ms
11,008 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 29 ms
11,136 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 28 ms
11,136 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 28 ms
11,136 KB
testcase_31 AC 27 ms
11,136 KB
testcase_32 WA -
testcase_33 AC 29 ms
11,136 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 28 ms
11,136 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 29 ms
11,136 KB
testcase_43 WA -
testcase_44 AC 28 ms
11,136 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 28 ms
11,136 KB
testcase_51 AC 28 ms
11,264 KB
testcase_52 AC 28 ms
11,136 KB
testcase_53 WA -
testcase_54 AC 27 ms
11,136 KB
testcase_55 WA -
testcase_56 AC 28 ms
11,136 KB
testcase_57 WA -
testcase_58 AC 28 ms
11,136 KB
testcase_59 WA -
testcase_60 AC 28 ms
11,136 KB
testcase_61 AC 28 ms
11,136 KB
testcase_62 AC 29 ms
11,136 KB
testcase_63 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, re
from collections import deque, defaultdict, Counter
from math import ceil, sqrt, hypot, factorial, pi, sin, cos, radians, gcd, log
from itertools import accumulate, permutations, combinations, product
from operator import itemgetter, mul, add
from copy import deepcopy
from string import ascii_lowercase, ascii_uppercase, digits
from bisect import bisect, bisect_left
from heapq import heappush, heappop
from functools import reduce, lru_cache
def input(): return sys.stdin.readline().strip()
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(): return list(map(int, input().split()))
def ZIP(n): return zip(*(MAP() for _ in range(n)))
sys.setrecursionlimit(10 ** 9)
INF = float('inf')
mod = 10 ** 9 + 7

N = INT()
A = [INT() for _ in range(N)]

print(100//A[-1])
0