結果

問題 No.908 うしたぷにきあくん文字列
ユーザー tempura000tempura000
提出日時 2019-11-08 16:51:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 303 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 10,684 KB
実行使用メモリ 7,960 KB
最終ジャッジ日時 2023-10-13 03:12:51
合計ジャッジ時間 1,270 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,932 KB
testcase_01 AC 15 ms
7,892 KB
testcase_02 AC 15 ms
7,788 KB
testcase_03 AC 15 ms
7,872 KB
testcase_04 AC 15 ms
7,772 KB
testcase_05 AC 15 ms
7,832 KB
testcase_06 WA -
testcase_07 AC 15 ms
7,780 KB
testcase_08 AC 15 ms
7,780 KB
testcase_09 WA -
testcase_10 AC 15 ms
7,872 KB
testcase_11 AC 15 ms
7,812 KB
testcase_12 AC 15 ms
7,872 KB
testcase_13 AC 15 ms
7,932 KB
testcase_14 WA -
testcase_15 AC 15 ms
7,812 KB
testcase_16 AC 15 ms
7,836 KB
testcase_17 AC 15 ms
7,936 KB
testcase_18 AC 15 ms
7,960 KB
testcase_19 AC 15 ms
7,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
str_input = list(s)

ushi = 0
space = 0
for str_linput in str_input:
	if(space == 0):
		space = 1
		continue
	elif(space == 1):
		if(str_linput == ' '):
			ushi = 1
		else:
			ushi = 0
		if(ushi == 0):
			break
		space = 0
		continue
	print()

if(ushi == 1):
	print('Yes')
else:
	print('No')
0