結果
問題 |
No.83 最大マッチング
|
ユーザー |
![]() |
提出日時 | 2016-06-14 16:05:45 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 93 bytes |
コンパイル時間 | 105 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 17,572 KB |
最終ジャッジ日時 | 2024-10-09 13:33:29 |
合計ジャッジ時間 | 7,195 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 RE * 1 TLE * 1 -- * 2 |
ソースコード
n, a = int(input()), 0 for i in range(n//2): a = a + 10**i print(a + (n%2)*6*10**((n//2)-1))