Python 競技プログラミング用語
Pythonで競プロをする時に早くうちたい1行用語・構文集
| 順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
|---|---|---|---|---|---|---|---|---|---|---|
| 1 | QWERTY | 4283 | 人間Sランク | 4.4 | 96.3% | 60.0 | 267 | 10 | 20 | 2025/10/27 |
| 2 | BRICK93 | 3616 | 人間Aランク | 3.6 | 100% | 60.0 | 217 | 0 | 17 | 2025/10/20 |
関連タイピング
-
遅延伝搬反転可能乱択平衡二分木と一回打つだけ
プレイ回数159かな48打 -
Pyhonのプログラミングで使いそうな単語・記号を集めました
プレイ回数663英語短文30秒 -
python 基本
プレイ回数391英字120打 -
プレイ回数316短文60秒
-
プレイ回数361英語長文444打
-
Pythonプログラムを打ちまくる
プレイ回数8854英語長文60秒 -
javaやpythonのコードを打つタイピングです
プレイ回数954長文60秒 -
※long long → ll, vector → vc
プレイ回数41英語90秒
問題文
ふりがな非表示
ふりがな表示
(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