結果

問題 No.83 最大マッチング
ユーザー convexineqconvexineq
提出日時 2020-12-03 08:21:24
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 76 ms / 5,000 ms
コード長 66 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 87,152 KB
実行使用メモリ 71,580 KB
最終ジャッジ日時 2023-10-11 17:08:17
合計ジャッジ時間 2,266 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,484 KB
testcase_01 AC 74 ms
71,496 KB
testcase_02 AC 74 ms
71,260 KB
testcase_03 AC 75 ms
71,400 KB
testcase_04 AC 73 ms
71,284 KB
testcase_05 AC 76 ms
71,476 KB
testcase_06 AC 74 ms
71,200 KB
testcase_07 AC 76 ms
71,108 KB
testcase_08 AC 75 ms
71,288 KB
testcase_09 AC 74 ms
71,296 KB
testcase_10 AC 74 ms
71,580 KB
testcase_11 AC 76 ms
71,464 KB
testcase_12 AC 74 ms
71,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = ("7" if n%2 else "1") + "1"*(n//2-1)
print(s)
0