結果
問題 |
No.83 最大マッチング
|
ユーザー |
|
提出日時 | 2019-04-13 16:47:19 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 249 bytes |
コンパイル時間 | 271 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 16,000 KB |
最終ジャッジ日時 | 2024-09-15 11:11:51 |
合計ジャッジ時間 | 7,420 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 RE * 1 TLE * 1 -- * 2 |
ソースコード
a = int(input()) num = 0 if a%2 == 0: b =int(a/2) for i in range(0,b): c =10**i num += c print(num) else: b =int(a/2) for i in range(0,b-1): c =10**i num += c d = num + 10**(b-1)*7 print(d)