結果

問題 No.83 最大マッチング
ユーザー yuki2006yuki2006
提出日時 2015-02-22 00:04:43
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 151 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 77,068 KB
実行使用メモリ 75,796 KB
最終ジャッジ日時 2024-06-23 21:48:57
合計ジャッジ時間 1,863 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
75,552 KB
testcase_01 AC 76 ms
75,552 KB
testcase_02 AC 74 ms
75,692 KB
testcase_03 AC 76 ms
75,652 KB
testcase_04 AC 75 ms
75,404 KB
testcase_05 AC 76 ms
75,692 KB
testcase_06 AC 76 ms
75,580 KB
testcase_07 AC 76 ms
75,400 KB
testcase_08 AC 76 ms
75,428 KB
testcase_09 AC 76 ms
75,644 KB
testcase_10 AC 76 ms
75,564 KB
testcase_11 AC 76 ms
75,796 KB
testcase_12 AC 76 ms
75,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
use = ((N / 2) - 1)
ans = "1" * use
remain = N - use * 2
if remain == 3:
    ans = "7" + ans
else:
    ans = "1" + ans

print ans
0