結果

問題 No.83 最大マッチング
ユーザー gr1msl3ygr1msl3y
提出日時 2022-05-17 23:35:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 77 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 52,096 KB
最終ジャッジ日時 2024-09-15 22:25:51
合計ジャッジ時間 1,426 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 40 ms
51,200 KB
testcase_02 WA -
testcase_03 AC 39 ms
51,968 KB
testcase_04 WA -
testcase_05 AC 40 ms
51,712 KB
testcase_06 WA -
testcase_07 AC 40 ms
51,328 KB
testcase_08 WA -
testcase_09 AC 41 ms
51,456 KB
testcase_10 AC 41 ms
51,328 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
if N==2:
    print(1)
else:
    print('7'*(N%2)+'1'*(N//2-1))
0