結果

問題 No.83 最大マッチング
ユーザー あかりきあかりき
提出日時 2021-02-08 08:38:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 105 bytes
コンパイル時間 998 ms
コンパイル使用メモリ 86,744 KB
実行使用メモリ 77,860 KB
最終ジャッジ日時 2023-09-18 14:12:22
合計ジャッジ時間 2,561 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,116 KB
testcase_01 AC 75 ms
71,260 KB
testcase_02 AC 77 ms
71,136 KB
testcase_03 AC 73 ms
71,072 KB
testcase_04 AC 75 ms
71,044 KB
testcase_05 AC 74 ms
71,096 KB
testcase_06 AC 77 ms
70,976 KB
testcase_07 AC 74 ms
70,968 KB
testcase_08 AC 75 ms
71,044 KB
testcase_09 AC 78 ms
75,364 KB
testcase_10 AC 78 ms
76,984 KB
testcase_11 AC 79 ms
77,836 KB
testcase_12 AC 81 ms
77,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ans=[]
for i in range(n//2):
  ans.append('1')
if n%2==1:
  ans[0]='7'
print(''.join(ans))
0