結果

問題 No.432 占い(Easy)
ユーザー matriematrie
提出日時 2020-12-05 08:26:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 186 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-09-15 12:43:23
合計ジャッジ時間 4,838 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 WA -
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 37 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 36 ms
10,624 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 35 ms
10,624 KB
testcase_10 AC 37 ms
10,624 KB
testcase_11 AC 111 ms
10,624 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 109 ms
10,624 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 469 ms
10,880 KB
testcase_19 AC 312 ms
10,624 KB
testcase_20 AC 151 ms
10,752 KB
testcase_21 AC 171 ms
10,624 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 34 ms
10,624 KB
testcase_25 AC 34 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def L(s):
	if int(s)<10: return s
	else:
		r = ''
		for i in range(len(s)-1):
			r += L(str(int(s[i])+int(s[i+1])))
		return(L(r))

n = int(input())
for i in range(n):
	print(L(input()))
0