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