-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathA.py
More file actions
37 lines (28 loc) · 1017 Bytes
/
A.py
File metadata and controls
37 lines (28 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# AtCoder用のPythonテンプレート
# コンテスト番号: 167
# よく使う変数の初期化
ay, an, G, tr, fa = 'Yes', 'No', {}, True, False
flg, cnt, pos, rec = tr, 0, 0, []
# 入力の読み込み(必要に応じてコメントアウトを外す)
# n = int(input())
# s = input()
# a = list(map(int, input().split()))
# lst = [i+1 for i in range(n)]
# よく使う入力パターン
# a = [int(input()) for _ in range(n)]
# a = [list(map(int, input().split())) for _ in range(n)]
# a = [list(map(int, list(input()))) for _ in range(n)]
# x, y = [list(i) for i in zip(*[list(map(int, input().split())) for _ in range(n)])]
# xy = [list(map(int, input().split())) for _ in range(n)]
# x, y = [list(i) for i in zip(*xy)]
# 文字列処理
# for i in range(len(txt)):
# ary.append(list(txt[i]))
# アルファベット変換
# A-Z:65 - 90 a-z:97 - 122 ord/chr
# デバッグ用
# print("debug:", variable_name)
# メイン処理
# ここにコードを書く
# 出力
# print(result)