コケずに良かった・・それが第一印象。昨日は緊張して眠れなかったYo
OPからミュージカル感あって良かった。沼津愛に溢れてた
最初は展開早!って思ったけど、帰国してからまさかSaintSnowとライブ対決するなんて思ってもなかったよ・・すげーアツかった
やばコーヒー行った時、ずら丸の位置にちょうど座ったなぁ(なおやばコーヒーの看板ツイートしたら由持にリツイートされてファボ沢山ついた https://twitter.com/shsub/status/1066209848180625408)
ヴェネツィアの風景、「ARIAで観た」ってなった
SaintSnowとの絡みのあるせいか、ルビィが活躍してる印象があった。ずら丸はひたすら食べてた。善子は痛いとこ全部拾ってった。よしりこ最高&ちかりこ最高
月ちゃん、黒沢ともよだったのか・・なんか(胸が平たいのも含めて)海未ちゃんと似てる気が
3年生曲、良かった・・
ED曲、最初はあまり来なかったけど3年生が入ったらぐっと来た
「Hop? Stop? Nonstop!」最初の方はあまりグッと来ないがサビはイイネ!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
schedule: | |
minutes_interval>: 1 | |
skip_delayed_by: 3m | |
+setup: | |
sh>: echo "first, ${session_time}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
title | cnt | カテゴリ | ラブライブ三昧 | |
---|---|---|---|---|
勇気はどこに?君の胸に! | 237 | サ | x | |
僕たちはひとつの光 | 215 | ラ | x | |
MOMENT RING | 212 | ラ | x | |
WATER BLUE NEW WORLD | 195 | サ | x | |
キセキヒカル | 134 | サ | x | |
Love marginal | 131 | ラ | x | |
Dancing stars on me! | 117 | ラ | ||
僕らは今のなかで | 98 | ラ | x | |
想いよひとつになれ | 97 | サ | x |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
number = int(input()) | |
input_str = input().split() | |
temp = int(input_str[0]) | |
goal = int(input_str[1]) | |
Hn = list(map(int, input().split())) | |
avg_temp = [abs(temp - (Hn * 0.006) - goal) for Hn in Hn] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In [10]: "恒河沙".isnumeric() | |
Out[10]: False | |
In [11]: "極".isnumeric() | |
Out[11]: False | |
In [12]: "載".isnumeric() | |
Out[12]: False | |
In [13]: "正".isnumeric() |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
S = input() | |
K = int(input()) | |
for i in range(len(S)): | |
if S[i] == '1': | |
if i == K: | |
print('1') | |
break | |
else: | |
print(S[i]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
N = int(input()) | |
# 約数の計算 | |
def count_yakusuu(n): | |
c = 0 | |
for j in range(1, n+1): | |
if n % j == 0: | |
#print("n % j ==0", n, j) | |
c += 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A, B = map(int, input().split()) | |
print((A-1) * (B-1)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
S = input() | |
flag = 'WA' | |
if S[0] == 'A': | |
ss = S[1] | |
s = S[2:] | |
cnt_c = 0 | |
for i in range(len(s)-1): | |
m = s[i] | |
if m == 'C': | |
cnt_c += 1 |