結果

問題 No.544 Delete 7
ユーザー 双六双六
提出日時 2020-09-07 01:53:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 1,000 ms
コード長 448 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 55,488 KB
最終ジャッジ日時 2024-05-06 21:43:14
合計ジャッジ時間 4,776 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,288 KB
testcase_01 AC 43 ms
54,744 KB
testcase_02 AC 42 ms
54,520 KB
testcase_03 AC 43 ms
53,684 KB
testcase_04 AC 42 ms
53,776 KB
testcase_05 AC 47 ms
53,636 KB
testcase_06 AC 43 ms
54,784 KB
testcase_07 AC 42 ms
54,364 KB
testcase_08 AC 43 ms
54,300 KB
testcase_09 AC 43 ms
54,008 KB
testcase_10 AC 44 ms
54,988 KB
testcase_11 AC 41 ms
55,216 KB
testcase_12 AC 42 ms
54,972 KB
testcase_13 AC 42 ms
54,240 KB
testcase_14 AC 42 ms
54,820 KB
testcase_15 AC 42 ms
54,088 KB
testcase_16 AC 43 ms
54,312 KB
testcase_17 AC 42 ms
55,488 KB
testcase_18 AC 42 ms
54,868 KB
testcase_19 AC 43 ms
54,396 KB
testcase_20 AC 42 ms
53,420 KB
testcase_21 AC 46 ms
53,816 KB
testcase_22 AC 42 ms
54,572 KB
testcase_23 AC 44 ms
54,856 KB
testcase_24 AC 45 ms
54,692 KB
testcase_25 AC 42 ms
55,288 KB
testcase_26 AC 44 ms
54,160 KB
testcase_27 AC 43 ms
54,560 KB
testcase_28 AC 43 ms
54,728 KB
testcase_29 AC 43 ms
54,200 KB
testcase_30 AC 43 ms
54,512 KB
testcase_31 AC 42 ms
54,916 KB
testcase_32 AC 43 ms
53,644 KB
testcase_33 AC 42 ms
53,608 KB
testcase_34 AC 44 ms
55,120 KB
testcase_35 AC 48 ms
55,452 KB
testcase_36 AC 43 ms
53,928 KB
testcase_37 AC 43 ms
54,248 KB
testcase_38 AC 42 ms
54,920 KB
testcase_39 AC 44 ms
54,316 KB
testcase_40 AC 43 ms
55,372 KB
testcase_41 AC 42 ms
54,304 KB
testcase_42 AC 43 ms
55,072 KB
testcase_43 AC 43 ms
54,188 KB
testcase_44 AC 45 ms
53,540 KB
testcase_45 AC 43 ms
55,024 KB
testcase_46 AC 43 ms
55,460 KB
testcase_47 AC 44 ms
54,940 KB
testcase_48 AC 42 ms
54,012 KB
testcase_49 AC 42 ms
54,636 KB
testcase_50 AC 43 ms
55,188 KB
testcase_51 AC 43 ms
53,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys; input = sys.stdin.buffer.readline
# sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N = input()
	n = len(N)
	A = 0
	B = 0
	for i in range(n):
		if N[-1 - i] == "7":
			A += 6 * (10 ** i)
			B += 10 ** i
		else:
			A += int(N[-1 - i]) * (10 ** i)

	print(A, B)

if __name__ == '__main__':
	main()
0