結果

問題 No.544 Delete 7
ユーザー ch1channnch1channn
提出日時 2022-12-16 09:42:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 294 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 54,084 KB
最終ジャッジ日時 2024-11-15 14:41:53
合計ジャッジ時間 4,390 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,128 KB
testcase_01 AC 37 ms
51,760 KB
testcase_02 AC 37 ms
51,824 KB
testcase_03 WA -
testcase_04 AC 38 ms
52,344 KB
testcase_05 AC 38 ms
52,488 KB
testcase_06 AC 38 ms
53,004 KB
testcase_07 AC 38 ms
54,084 KB
testcase_08 AC 37 ms
53,728 KB
testcase_09 AC 38 ms
52,608 KB
testcase_10 AC 37 ms
53,632 KB
testcase_11 WA -
testcase_12 AC 37 ms
52,516 KB
testcase_13 WA -
testcase_14 AC 37 ms
53,312 KB
testcase_15 WA -
testcase_16 AC 38 ms
53,620 KB
testcase_17 AC 37 ms
53,048 KB
testcase_18 AC 37 ms
53,004 KB
testcase_19 AC 37 ms
53,424 KB
testcase_20 AC 38 ms
53,068 KB
testcase_21 AC 38 ms
52,540 KB
testcase_22 AC 38 ms
52,184 KB
testcase_23 AC 37 ms
52,172 KB
testcase_24 WA -
testcase_25 AC 36 ms
52,548 KB
testcase_26 AC 37 ms
52,084 KB
testcase_27 AC 37 ms
53,340 KB
testcase_28 AC 37 ms
52,472 KB
testcase_29 AC 37 ms
52,764 KB
testcase_30 AC 38 ms
52,232 KB
testcase_31 AC 38 ms
53,284 KB
testcase_32 AC 37 ms
52,208 KB
testcase_33 WA -
testcase_34 AC 37 ms
53,228 KB
testcase_35 AC 37 ms
52,956 KB
testcase_36 AC 38 ms
53,116 KB
testcase_37 AC 37 ms
52,136 KB
testcase_38 AC 37 ms
51,628 KB
testcase_39 AC 38 ms
51,948 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 37 ms
53,420 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 38 ms
52,384 KB
testcase_49 AC 37 ms
53,052 KB
testcase_50 AC 38 ms
53,784 KB
testcase_51 AC 37 ms
52,756 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
for i in range(a,10**9):
	if a + i == n:
		print(a,i)
		exit()
0