結果
問題 | No.83 最大マッチング |
ユーザー |
|
提出日時 | 2016-12-05 21:19:58 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 186 bytes |
コンパイル時間 | 78 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-11-27 22:36:12 |
合計ジャッジ時間 | 1,500 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 RE * 4 |
ソースコード
num = 0n = int(input())n2 = int(n/2)if n == 3:print(7)else:for i in range(n2):num = num * 10 + 1if n%2 != 0:num += 6 * 10 ** (n2 - 1)print(num)