結果

問題 No.544 Delete 7
ユーザー ch1channnch1channn
提出日時 2022-12-16 09:43:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 298 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 54,116 KB
最終ジャッジ日時 2024-11-15 14:43:22
合計ジャッジ時間 3,674 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,624 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 34 ms
52,392 KB
testcase_08 AC 34 ms
52,708 KB
testcase_09 AC 36 ms
52,112 KB
testcase_10 AC 35 ms
52,164 KB
testcase_11 WA -
testcase_12 AC 35 ms
53,444 KB
testcase_13 AC 34 ms
51,944 KB
testcase_14 AC 35 ms
52,060 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 34 ms
52,756 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 34 ms
52,244 KB
testcase_21 WA -
testcase_22 AC 35 ms
51,624 KB
testcase_23 AC 35 ms
53,152 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 35 ms
52,184 KB
testcase_27 AC 36 ms
52,488 KB
testcase_28 AC 34 ms
53,760 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 34 ms
53,184 KB
testcase_37 AC 36 ms
52,888 KB
testcase_38 WA -
testcase_39 AC 35 ms
52,088 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 35 ms
52,536 KB
testcase_43 WA -
testcase_44 AC 35 ms
52,888 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 36 ms
53,360 KB
testcase_48 WA -
testcase_49 AC 36 ms
52,628 KB
testcase_50 AC 36 ms
52,160 KB
testcase_51 AC 34 ms
51,960 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 = (n//2)-1
for i in range(a,10**9):
	if a + i == n:
		print(a,i)
		exit()
0