結果

問題 No.544 Delete 7
ユーザー ch1channnch1channn
提出日時 2022-12-16 09:44:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 300 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 53,808 KB
最終ジャッジ日時 2024-04-27 12:44:46
合計ジャッジ時間 3,451 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,944 KB
testcase_01 AC 34 ms
52,576 KB
testcase_02 AC 37 ms
52,932 KB
testcase_03 WA -
testcase_04 AC 36 ms
52,488 KB
testcase_05 AC 33 ms
51,996 KB
testcase_06 AC 32 ms
53,088 KB
testcase_07 AC 32 ms
52,344 KB
testcase_08 AC 32 ms
52,852 KB
testcase_09 AC 34 ms
53,616 KB
testcase_10 AC 33 ms
52,636 KB
testcase_11 WA -
testcase_12 AC 33 ms
52,552 KB
testcase_13 WA -
testcase_14 AC 33 ms
52,768 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 32 ms
52,340 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 33 ms
52,768 KB
testcase_21 AC 35 ms
52,736 KB
testcase_22 AC 34 ms
52,332 KB
testcase_23 AC 33 ms
53,276 KB
testcase_24 WA -
testcase_25 AC 32 ms
52,476 KB
testcase_26 AC 31 ms
53,176 KB
testcase_27 AC 33 ms
52,544 KB
testcase_28 AC 32 ms
52,136 KB
testcase_29 AC 32 ms
53,808 KB
testcase_30 AC 38 ms
53,040 KB
testcase_31 AC 34 ms
53,016 KB
testcase_32 AC 32 ms
52,220 KB
testcase_33 WA -
testcase_34 AC 32 ms
52,956 KB
testcase_35 AC 32 ms
53,016 KB
testcase_36 AC 31 ms
52,252 KB
testcase_37 AC 34 ms
52,616 KB
testcase_38 AC 33 ms
53,220 KB
testcase_39 AC 32 ms
52,188 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 32 ms
51,748 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 32 ms
52,264 KB
testcase_48 AC 32 ms
52,940 KB
testcase_49 AC 34 ms
52,616 KB
testcase_50 AC 32 ms
52,408 KB
testcase_51 AC 33 ms
52,340 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-2,10**9):
	if a + i == n:
		print(a,i)
		exit()
0