結果

問題 No.544 Delete 7
ユーザー ch1channnch1channn
提出日時 2022-12-16 09:48:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 324 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 53,952 KB
最終ジャッジ日時 2024-11-15 14:52:59
合計ジャッジ時間 3,701 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,408 KB
testcase_01 AC 35 ms
52,240 KB
testcase_02 AC 35 ms
52,388 KB
testcase_03 AC 34 ms
52,240 KB
testcase_04 AC 35 ms
53,116 KB
testcase_05 AC 34 ms
52,208 KB
testcase_06 AC 35 ms
52,132 KB
testcase_07 AC 34 ms
52,728 KB
testcase_08 AC 35 ms
52,556 KB
testcase_09 AC 34 ms
51,840 KB
testcase_10 AC 35 ms
53,308 KB
testcase_11 AC 38 ms
51,932 KB
testcase_12 AC 35 ms
52,240 KB
testcase_13 AC 34 ms
52,696 KB
testcase_14 AC 35 ms
51,816 KB
testcase_15 AC 35 ms
52,624 KB
testcase_16 AC 36 ms
53,564 KB
testcase_17 AC 35 ms
53,244 KB
testcase_18 AC 35 ms
53,952 KB
testcase_19 AC 35 ms
52,532 KB
testcase_20 AC 35 ms
52,400 KB
testcase_21 AC 35 ms
52,564 KB
testcase_22 AC 35 ms
52,744 KB
testcase_23 AC 36 ms
53,280 KB
testcase_24 AC 36 ms
53,540 KB
testcase_25 AC 35 ms
52,956 KB
testcase_26 AC 34 ms
52,836 KB
testcase_27 AC 35 ms
51,816 KB
testcase_28 AC 36 ms
53,104 KB
testcase_29 AC 35 ms
53,308 KB
testcase_30 AC 33 ms
51,940 KB
testcase_31 AC 35 ms
52,220 KB
testcase_32 AC 35 ms
53,188 KB
testcase_33 AC 36 ms
52,388 KB
testcase_34 AC 35 ms
52,840 KB
testcase_35 AC 34 ms
51,996 KB
testcase_36 AC 35 ms
52,280 KB
testcase_37 AC 35 ms
52,272 KB
testcase_38 AC 35 ms
53,256 KB
testcase_39 AC 35 ms
52,552 KB
testcase_40 AC 35 ms
52,420 KB
testcase_41 AC 35 ms
52,320 KB
testcase_42 AC 35 ms
51,932 KB
testcase_43 AC 35 ms
52,324 KB
testcase_44 AC 35 ms
52,284 KB
testcase_45 AC 36 ms
52,920 KB
testcase_46 AC 36 ms
53,252 KB
testcase_47 AC 34 ms
51,696 KB
testcase_48 AC 35 ms
52,128 KB
testcase_49 AC 35 ms
52,508 KB
testcase_50 AC 35 ms
52,164 KB
testcase_51 AC 36 ms
52,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
if sys.platform =='ios':
	import clipboard
	a=clipboard.get()
	a = a.split('\n')
	text = '\n'.join(a)
	with open('input_file.txt','w') as f:
		f.write(text)
	sys.stdin = open('input_file.txt')
	
n = int(input())
a = 0
tmp = n
t = 1
for i in range(10):
	if n % 10 == 7:
		a += t
	t *= 10
	n //= 10
	
print(a,tmp-a)
0