結果

問題 No.83 最大マッチング
ユーザー rlangevinrlangevin
提出日時 2023-10-28 18:56:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 5,000 ms
コード長 145 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 76,188 KB
最終ジャッジ日時 2024-09-25 16:32:53
合計ジャッジ時間 1,644 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,360 KB
testcase_01 AC 46 ms
52,272 KB
testcase_02 AC 43 ms
52,072 KB
testcase_03 AC 43 ms
52,356 KB
testcase_04 AC 41 ms
52,544 KB
testcase_05 AC 44 ms
52,860 KB
testcase_06 AC 43 ms
53,352 KB
testcase_07 AC 41 ms
52,112 KB
testcase_08 AC 43 ms
52,216 KB
testcase_09 AC 55 ms
62,700 KB
testcase_10 AC 60 ms
71,544 KB
testcase_11 AC 66 ms
76,188 KB
testcase_12 AC 67 ms
75,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = []
while N >= 4:
	ans.append(1)
	N -= 2
if N == 2:
	ans.append(1)
else:
	ans.append(7)
	
ans.reverse()
print(*ans, sep="")
0