結果
問題 |
No.83 最大マッチング
|
ユーザー |
![]() |
提出日時 | 2019-05-27 22:18:47 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 91 bytes |
コンパイル時間 | 70 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-17 15:35:19 |
合計ジャッジ時間 | 1,111 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 10 |
ソースコード
N = int(input()) if N % 2 == 0: print('1' + (N/2)) else: print('7' + '1'*((N-3)/2))