Python 競技プログラミング用語
順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
---|---|---|---|---|---|---|---|---|---|---|
1 | ku | 4316 | 人間Sランク | 4.3 | 99.6% | 60.0 | 260 | 1 | 20 | 2024/11/02 |
関連タイピング
-
プレイ回数559英語長文300秒
-
プレイ回数654英語長文60秒
-
プレイ回数1453短文英字429打
-
プレイ回数1700短文90秒
-
プレイ回数900178打
-
プレイ回数1517英語508打
-
プレイ回数328英語長文444打
-
プレイ回数2万英語1055打
問題文
ふりがな非表示
ふりがな表示
(cython)
cython
(pypy)
pypy
(n = int(input()))
n = int(input())
(if n == 1:)
if n == 1:
(print("yes" if n%2 else "no"))
print("yes" if n%2 else "no")
(def factorial(x):)
def factorial(x):
(import math)
import math
(import numpy)
import numpy
(else:)
else:
(pow(x,y,z))
pow(x,y,z)
(while a:)
while a:
(for i in range(n):)
for i in range(n):
(elif n == 0:)
elif n == 0:
(from math import sqrt)
from math import sqrt
(n**0.5)
n**0.5
(l = [0]*(n+1))
l = [0]*(n+1)
(import scipy)
import scipy
(import itertools)
import itertools