| # | User | Rating |
|---|---|---|
| 1 | Kevin114514 | 3765 |
| 2 | tourist | 3757 |
| 3 | Benq | 3738 |
| 4 | jiangly | 3705 |
| 5 | orzdevinwang | 3670 |
| 6 | ksun48 | 3668 |
| 7 | Radewoosh | 3531 |
| 8 | maroonrk | 3443 |
| 9 | dXqwq | 3436 |
| 10 | Nachia | 3432 |
| # | User | Contrib. |
|---|---|---|
| 1 | Um_nik | 169 |
| 2 | Qingyu | 164 |
| 3 | errorgorn | 163 |
| 4 | adamant | 158 |
| 5 | cry | 153 |
| 6 | Proof_by_QED | 152 |
| 7 | Dominater069 | 150 |
| 8 | TheScrasse | 143 |
| 8 | soullless | 143 |
| 10 | Arpa | 141 |






| Site | Contest ID | Problemset task ID | Contest task ID |
|---|---|---|---|
| Codeforces | contest_id (131) | contest_id letter (131 A) | contest_id letter (131 A) |
| CodeChef | contest_code (NOV11) | problem_code (GCD2) | contest_code problem_code (NOV11 DOMNOCUT) |
| Timus | contest_id (101) | problem_id (1000) | contest_id problem_number (101 1) |

Can I use IntelliJIdea to code in C++ ? Are there some plug-in to do that ? |
You can try CLion. |
I have a problem,when go add actions , not show me plugin chelper :(, |
You either had not copied it to correct folder or had not restarted Idea since |
I installed CHelper from Browse Repository and Restarted the IDE after that I Added All CHelper Icons after Main Toolbar From Menus and Toolbars and I opened Edit Project Settings And When I parse Contest And Press OK NullPointerException And Message null is generated I am not be able install It Correctly plz help me...sorry for my English |
Do you have any project open when you click on "Edit Project Settings"? |
Yes i have one project open which i created ... |
I have had the same problem till I right clicked main directory (Default Folder) and marked it as source, then everything now works. The project originally had only src folder marked as source as it was generated with the commandline project template in intelliJ |
» | I have some problems with your CHelper - plugin :-? I've tried it with both IntelliJ IDEA 11 and 10, and I can't get it working I did it in order : 1. Install IntelliJ IDEA 10 2. Copy chelper2.33.jar to config/plugins directory 3. Add CHelper's actions to the toolbar 4. Create new Java Module project (with src directory) 5. Copy chelper.properties to src directory 6. Add chelper2.33.jar to the new project's classpath 7. Try the Chelper's actions ... and it didn't work ... Anybody has the same issue ? Thx alot :) |
» » | Had you restarted Idea after copying chelper.properties? |
» » » | yes, I had :( thx for your reply :D |
» » » » | Just noticed - you copied chelper.properties to src directory, but it should be in project root |
» » » » » | thank you for your support, it's working now :D oh, if i change my settings in chelper.properties, i will also restart the IDE too ? |
» » » » » » | Yep, would change it in next version |
» » » » » » » | oh, can i have another question, please ? How can I define my own Input Class ? Is there any "template" feature ? |
» » » » » » » » | You just need to make sure that your class takes InputStream as argument and has method next, which returns next token from input as string. Everything else you can write as you like |
» | To Egor, Your plugin have a few "bugs" with Topcoder SRM Task :D. I've used it on SRM 530 and 531 and found some issues :D
Just a "report" for you :D, hope you will see and fix them soon :D Again, thanks for such an useful plugin :D |
» |
» | There is problem on creating ,parsing contest,none function work from toolbar |
» » | Nothing is working or only contest parsing? |
» » » |
» » » | Now contest parsing work ,how will it generate automatically Main file,it is not working |
» » » » | It should generate the Main file when you run or debug created configuration |
» » » » » | Hi Egor. This is my configuration: default dir: src/main Archive dir: archive/unsorted Output dir: src Input class: net.egork.chelper.util.InputReader Output class: net.egork.chelper.util.OutputWriter When I click onRun the selected configuration, it successfully generates a Main.java file under src (so src/Main.java). The generated file includes the classes from your library but the methods are empty. This is what I get: So, I'm getting compile errors. I installed according tohttps://code.google.com/p/idea-chelper/wiki/MainPage Intellij IDEA 12.1.4 @ Windows any hints? UPD: If I leave the output dir empty, it compiles correctly: - before compiling, it yields "outputDirectory should be under source and in default package".- it then generates the file on the project root directory (so, on the same level as the src directory). The file still has empty methods for your library classes with /* compiled code */ bodies.- I created a sample case and it correctly showed me the results on the intellij console. |
» | Hi Egor, Can you tell me how the inline functions work...I cannot figure it out..Suppose I have a method isPrime(int) that returns whether the number is prime or not.I want to use it directly and not write the whole thing everytime.I think the inline code does exactly this.But I dont know how to use it.Could you tell me or better demonstrate it with an example??? |
» » | You need to create some class, like IntegerUtils and create static method isPrime. Then you can use it in your solutions |
» » » | And where do I have to save that class?? |
» » » » | Anywhere it will be visible fromyour solution |
» » » » » | I created a class algorithms in src and a static method isPrime(Object a) in that.Then I compiled it. After that when I go to a Task and write boolean check=algorithms.isPrime((Object)a) ,then it is shown in red .i.e. it cannot compile...What should I do...Should I have to restart?? |
» » » » » » | Are you sure your method was public? |
» » » » » » » | Yes it is public...Do I have to change something in the properties file or put the class in a directory under the src?? |
» » » » » » » » | Well, it should be somewhere under source — just like for any Java project |
» » » » » » » » » | Ok. now its working .When I created a new directory under src and put the class in it.Thanks for the replies and your time:-) The thing I dont like in this is that it is showing all the methods in that class even if it is not called but some other method of that class is called ..Can this be changed?? |
» | I was solving a problem of Light OJ, but seems unused codes are not removed in my Main File. Here is my code:http://ideone.com/gsgDb Here readLong is not removed, which is actually unused. |
» » | Strange, not repetable on my computer By the way, you can use Test Type: MULTI_TEST, that's exactly why that type was created |
» » » | Did you mean MULTI_NUMBER? BTW, do you suggest me to do anything to make unused code remove working? I'm using chelper2.33. |
» » » » | Yes It seems for whatever reason Idea considers readLong method as used. Could you open your created source (i.e. Main.java) in Idea and see if method name is grayed out as unused or not? |
» | I changed the properties file and it does work for codeforces and codechef. And when I see my code at the topcoder practise arena it does indeed have the unused codes+every time I run the code for topcoder problems it gives a warning "OutPut directory should be under source and in defualt package " for only topcoder problems but then it runs...What should be done?? |
» » | I had the same problem but it seems I had not configured my directories correctly. Now, it's ok. My directories in properties are: outputDirectory = src, archiveDirectory = archive/unsorted, defaultDirectory = src/mypackage, topcoderDirectory = src And make sure moj outputs to your src directory. Thanks for the great plugin, Egor! |
» |
» | Thank you for your plugin. It's great. |
» | Thank you for your great work! But I can't find the "%home_dir%.IntelliJIdea10configplugins" means, so I can't continue to set up this plugin in my PC corrcetly.. Help! Thank you! |
» » | Launch IntelliJ and choose
|
» » » | Thank you for your reply! But I mean I don't know where to mkdir the IntelliJIdea10configplugins, that means I don't what "“%home_dir%" mean. Is it the Home directory "~/"? Thank you! |
» » » » | I fixed path that got broken after markdown introduction Yes, that's home directory |
» » » » » | BTW, in the Checker file, there are some imports I can not find in the project.. They are "import net.egork.chelper.task.Test; import net.egork.chelper.tester.Verdict;" And my config is " inputClass = lozy.InputReader outputClass = java.io.PrintWriter excludePackages = java.,javax.,com.sun. outputDirectory = src author = Lozy archiveDirectory = archive/unsorted defaultDirectory = src/cf topcoderDirectory = topcoder testDirectory = lib/test enableUnitTests = false " Is there any problem in my config file or should I do some other works? Thanks a lot! |
» |
» |
» | Why I can't open and Install ? I have installed Java before ! |
» » | You do not need to download anything from Google actually. Just use IntelliJ Idea Plugin repository (and you do understand that this is plugin for IntelliJ Idea, right?) |
» » » |
» » » | "You need to download plug-in and configuration. " plug-in :http://code.google.com/p/idea-chelper/downloads/detail?name=chelper2.4.jar ! |
» |
» | When I use static imports in Task class it will not appear in the generated Main class which will produce some compilation errors. Is there a fix (a way to have a predefined Main class)? |
» » | Static imports are currently not supported |
» » » |
» | Egor How Can I change the template code that generates automatically in the main? solver class name? |
» » | You can change solver class name (Main class name), but unable to change generated code |
» » » | some of the problem's input file is terminated by EOF. How can I handled those problem with CHelper regular test types? I've chose "Number of tests unknown" but it gives me RE :( |
» | Egor, great thanks for your plugin, it makes me efficient! I use it on IDEA 12 on MacOS and I have 2 questions:
Thank you for help! |
» » |
|
» » » |
Thank you a lot for help! |
» » » » | On the first point you need to select "Standard stream" for input/output when you creating task. If you are parsing those should be correct automatically On second point — if you use up to date Idea/plugin — I just don't know what could be wrong |
» | In IDEA 13.1.1 I get the following exception when running a task: 17:20:01 IncorrectOperationException: Must not change document outside command or undo-transparent action. See com.intellij.openapi.command.WriteCommandAction or com.intellij.openapi.command.CommandProcessor: Must not change document outside command or undo-transparent action. See com.intellij.openapi.command.WriteCommandAction or com.intellij.openapi.command.CommandProcessor Works OK in 13.0. |
» | When i run the codeforces programm using chelper , I get null pointer exception net.egork.chelper.util.CodeGenerationUtilities$InlineVisitor.addClass(CodeGenerationUtilities.java:534) My configuration file is: inputClass = net.egork.chelper.util.InputReader outputClass = net.egork.chelper.util.OutputWriter excludePackages = java.,javax.,com.sun. outputDirectory = src/output author = Himalay archiveDirectory = archive/unsorted defaultDirectory = src/main/mypackage topcoderDirectory = topcoder testDirectory = lib/test enableUnitTests = false |
» | Is the plugin supposed to work for GCJ 2014? I am getting the following error when I try to parse a task: 7:37:09 PM CHelper: Unable to parse task B — Cookie Clicker Alpha. Connection problems or format change |
» | Do you have any plans to update source code athttps://code.google.com/p/idea-chelper/? It seems to be pretty outdated. |
» | Hello, thanks for the plugin ;) It makes some good, but, for me, it works only with TopCoder (not with contest with io). I have described my problem (notSuchMethodException) here:http://stackoverflow.com/questions/23383595/chelper-plugin-nosuchmethodexception-error Could you please look and help to track the problem? |
» » | Your output writer class should have constructor that takes writer as parameter (and relays output there). You can use PrintWriter as output class |
» | I have just started using Chelper , it works perfect with topcoder but with code forces it always don't take the first number in input if contains number i.e ( if input like this 5 4 1 1 1 1 it begins reading from 4 not 5 !!) any help please, i am using scanner for input |
» |
» | Exception in thread "main" java.lang.IllegalAccessException: Class net.egork.chelper.tester.NewTester can not access a member of class InputReader with modifiers "public" This is what I am getting after executing the debug code option. Any suggestions ..? Note : I am using InputReader and OutputWriter class from your code. @Egor |
» | Does anybody have any insight into how to speed up running the task in Intellij? Right now I am using Egor's library (which is very helpful btw), and that seems to slow it down as it the compiler links things together I suppose. Overall it take between 15-25 seconds for solution to run for me right now, which is not terribly long but for competitions would be nice if it was a bit faster. I already removed all of my unused plugins and increased stack space but it doesn't seem to make a lot of difference. Has anyone found a way of speeding up Intellij? |
» » | Your computer must be very old, since on my 7-years-old Core 2 Duo E6600 the project with Egor's library compiles pretty fast, in about 5 seconds. The same speed is shown by my primitive types collections library (see in my blog). But I once tried to use Trove library and got 15-20 seconds, they have quite large code with lots of abstract classes, which slows down code generation. These numbers are for IDEA 13, maybe your IDE is too old? |
» » » | Hm I am not sure if that is the case. I am using a 2012 Macbook Pro Retina, with IDEA 14, with all updates I think. Before installing Egor's library I was getting something like that with around 5 seconds. But anyway thanks for the response, maybe there is some setting that I accidentally enabled or something. Also I am using Java 8, I don't know if that makes a difference. I forget exactly but maybe with Java 7 it was faster. |
» » | So just another thing I was wondering about is it fine to have the yaal library under the src folder? I would think that it does not make a difference, but just want to make sure that it does not force some additional recompile or something of the library. Just additional bit of information is that when say I compile topcoder task that does not call from the library (topcoder because codeforces always uses input/output from library) it takes about 1-2 seconds. However as soon as I call a method it can increase to as much as 20 seconds. Just wanted to make sure that this directory setup with the library and everything is the same way that everybody else is doing it. And also another question because I just noticed this but what does the number 4 by the Chelper project folder mean? Thanks! |
» | HiEgor , All tools [Create Task , Parse Contest ,all] not working. please help to solve following error : Thanks for nice plugin. |
» |
» |
|
» » | Those sites are parsed using chrome extension, you can find it in chrome store As for changing input class you can read wiki on github for instructions |
» » » |
» » » | How to parse the task using Chrome Extension. I have clicked in + button many times but nothing is happening. Neither the IntelliJ is affected nor the other things. |
» » » » | Do you have a project with CHelper configuration opened in Idea? Also it may be that Hackerrank changed their DOM structure once again. Is there anything in Idea log? |
» » » » » |
» » » » » | Yes, I have a project opened in Idea with CHelper config. And I ma trying the plugin fro Codechef. |
» » » » » » |
» » » » » » | Can you tell me instructions I have to follow after clicking on parse Task in Google Chrome for any practice question on Codechef or ZCO contest of Codechef. I am assuming my Idea is closed. |
» » » » » » » | Idea should be running. New task dialog should show up when you click on plus in chrome |
» » » » » » » » |
» » » » » » » » | new task dialog is not showing up. |
» » » » » » » » » |
» » » » » » » » |
» |
» | Are there any plugin like CHelper for C++ in CLion IDE? |
» » |
» » |
» » » |
» |
» |
» | I think the new "Copy" feature has caused some problems in parsing the task's Test Cases. |
» » |
» | One question and one feedback!Egor Q: How to use precision for double comparisons? I assume in the advanced settings, I need to put something for "checker properties" field, but what to put?? Any manual page explaining that? Feedback: when checking whether all input class and output class methods are implemented, it doesn't look for the necessary methods in super class. So it complains whereas the method exists in super class. |
» |
» |
» | Chelper not working after latest update of Intellij Idea |
» » | I am working on this, but I am not sure I will finish before the round. You can install previous version temporarily |
» » » | Ok. Thank you. for temporary purpose when I run the tasks created before this update and then run newly created task , it works fine. |
» » » » | For some reason new version of idea skips on compiling before running corresponding configuration types. I fixed this, you can download new version from repository |
» » » » » | Have you updated it in Plugins of IDEA. As this update is not showing there, so the problem still persists. |
» » » » » » |
» » » » » » » | I'm still using version 4.3.1 because 4.4.2 doesn't work. I was unable to compete in 499 round just because i updated chelper as idea suggested me and after that i returned 4.3.1. |
» » » » » » » » | How exactly it does not work? And what version of idea do you use? |
» | CHelper Setup Steps: (as of July 2018)
|
» » | archiveDirectory actually may not be in source, while it is not mandatory for outputDirectory to be a source one. Otherwise — sound advice |
» » » |
» » » | I have followed the advice above. I can generate some files using "Parse Contest" button, but:
Any idea what I may be missing? I use
|
» » » » |
» » » » | OK, I kinda made it work by the following actions:
Now:
However:
|
» » » » » |
» | Installed Chelper from the repository in idea and then restarted idea.But none of the action is working. Also nothing opens when parse a problem from the browser. (Using Ubuntu operating system) |
» | where to find the chelper.properties file |
» » | If you press "Edit Project Settings" button it will create one for you |
» |
» | HiEgor , All tools [Create Task , Parse Contest ,all] everything is working well except the one small issue. The Parser is not working properly (It parses the problem correctly ,but not able to parse Sample TC , mention in the problem). ( IntelliJ Version 2018 2.5. CHelper Version 4.4.2 Window 10 ) Tried most of possible sol , Still not getting desirable result. Anybody has the same issue ? Thx alot :) |
» » |
» |
» | Hey I am getting this error while running the code!! java.lang.NullPointerException at net.egork.chelper.codegeneration.CodeGenerationUtilities.getSimpleName(CodeGenerationUtilities.java:410) at net.egork.chelper.codegeneration.SolutionGenerator.createMainClassTemplate(SolutionGenerator.java:498) at net.egork.chelper.codegeneration.SolutionGenerator$3.run(SolutionGenerator.java:574) at com.intellij.openapi.application.impl.ApplicationImpl.runWriteAction(ApplicationImpl.java:1057) at net.egork.chelper.codegeneration.SolutionGenerator.createSourceFile(SolutionGenerator.java:557) at net.egork.chelper.util.TaskUtilities.createSourceFile(TaskUtilities.java:21) at net.egork.chelper.configurations.TaskConfiguration.getState(TaskConfiguration.java:73) at com.intellij.execution.runners.ExecutionEnvironment.getState(ExecutionEnvironment.java:158) at com.intellij.execution.runners.BaseProgramRunner.execute(BaseProgramRunner.java:55) at com.intellij.execution.runners.BaseProgramRunner.execute(BaseProgramRunner.java:50) at com.intellij.execution.ProgramRunnerUtil.executeConfigurationAsync(ProgramRunnerUtil.java:92) at com.intellij.execution.ProgramRunnerUtil.executeConfiguration(ProgramRunnerUtil.java:41) at com.intellij.execution.impl.ExecutionManagerImpl.restart(ExecutionManagerImpl.java:93) at com.intellij.execution.impl.ExecutionManagerImpl.access$300(ExecutionManagerImpl.java:44) at com.intellij.execution.impl.ExecutionManagerImpl$3.run(ExecutionManagerImpl.java:442) at com.intellij.util.concurrency.QueueProcessor.runSafely(QueueProcessor.java:232) at com.intellij.util.Alarm$Request.runSafely(Alarm.java:356) at com.intellij.util.Alarm$Request.run(Alarm.java:343) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run(SchedulingWrapper.java:228) at com.intellij.openapi.application.TransactionGuardImpl$2.run(TransactionGuardImpl.java:315) at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.doRun(LaterInvocator.java:435) at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.runNextEvent(LaterInvocator.java:419) at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.run(LaterInvocator.java:403) at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311) at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:762) at java.awt.EventQueue.access$500(EventQueue.java:98) at java.awt.EventQueue$3.run(EventQueue.java:715) at java.awt.EventQueue$3.run(EventQueue.java:709) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:80) at java.awt.EventQueue.dispatchEvent(EventQueue.java:732) at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.java:719) at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:668) at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:363) at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93) at java.awt.EventDispatchThread.run(EventDispatchThread.java:82) Egor can anyone help me out?? I am using intellij 2018.3.3 verion and chelper 4.4.2v |
» | Please help. I am getting this error on IntelliJ IDEA 2018.1.3 with CHelper 4.4.2 and jdk1.8.0_181 Error: |
» | I installed idea Intellij and also added the chelper plugin but when i parse a task from codeforces its not adding the testcases automatically.. Rest all are working correctly. can anyone help. I added the plugin from idea intellij store as well as tried downloading the plugin and loading from disk. can anyone please help . I am using Idea Intellij 2018.3.3 version. Test cases are not being parsed. please help. |
» | Egor Not Compatible with Latest Intellij Idea. Exception in thread "main" java.lang.NoClassDefFoundError: com/fasterxml/jackson/databind/ObjectMapper at net.egork.chelper.tester.NewTester.(NewTester.java:24) Caused by: java.lang.ClassNotFoundException: com.fasterxml.jackson.databind.ObjectMapper at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:583) at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178) at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521) Please update |
» |
» | I have tried installing plugin from Probably, that was due to absence of the Despite the fact, the library UPD: The problem has been solved. If you experience a similar problem, please try to update everything you have. Install plugin of the previous version and then update it when Intellij IDEA advises you to do so. |
» » | Hey, I am facing the exact same issue. Can you elaborate a little more how to solve this issue?Waylesange Thanks |
» » » |
» » » | OK, just try to keep it simple. I suggest you update Intellij IDEA to the latest version. Secondly, you go to File -> Settings... -> Plugins and search for the chelper plugin. It is required to run the task run configurations, and it supplies you with the buttons on the toolbar, too. After you have done that, you should be getting the error about impossibility to find and load class from net.egork... Now you go to the jetbrains plugin site, search for chelper plugin there, and download the latest zip archive. After unzipping it, go to File -> Project Structure... -> Libraries -> + -> Java, select recursively the folder you just unzipped until you get to a bunch of jars that contain that missing class in the error. After you have added those jars to your classpath, along with JDK, it should be enough to parse a problem from codeforces site using Google Chrome plugin. Thus, you get the tests inherent to the problem as well, whereas if you are importing the problem from within Parse contest menu of chelper, you won't get the tests, which is sad and needs to be fixed by Egor Kulikov. I hope my experience helps you! |
» | I have installed the latest IDE and Chelper 4.4.2.
|
» | It is showing "All test passed" inspite of a wrong solution. How to resolve it?
|
» » | Which parsing tool had you used? As you can see there were no tests |
» » » |
» » » | Yeah me too facing the same problem but i didn't used any parsing tool. I parsed the contest using the contest parser of chelper. |
» » » » |
» » » » | You should useCompetitive Companion. CHelper parser is rather outdated. |
» » » » » |
» » » » » | how to parse using Competitive Companion. Is there any good video's teaching that. |
» » » » » » |
» » » » » » | I don't think you need a video to do that. Let me give a brief explanation (assuming CHelper is already set up): That should do it. Note that you don't have to repeat step 2 every time but it's important to do that upon installing Competitve Companion. |
» |
» | I have installed chelper plugin in Intellij ide.I was able to parse the contest questions but for every task it shows 0 test cases.Its not able to parse the sample test cases,how do i resolve this issue? |
» | HelloEgor, When I parse a contest from CodeForces, it parses the tasks fine, but without tests. CHelper version: Intellij Idea Community Ed: I can also see the following exception (stacktrace) in the Idea logs: |
» » | This is because Codeforces changed DOM structure of pages a little bit ago. You can use Competitive Companion extension for Chrome for now while I am working on major overhaul of CHelper |
» » » | Thank you for your response! Do you have any idea about the timeline of those changes? |
» » » » | You mean the overhaul? Not sure, even alpha is quite some time away. But Competitive Companion is really cool extension, you should try it |
» » » » » | Tried, works like a charm, thanks for that!! Once I have your attention, let me ask another question :) Recently, after a bit of break in competitive programming, I noticed that two of the great Java users —Petr and yourself have switched to GNU C++17 by preserving the coding styles. I'm wondering what the reason was behind switching to C++ after a long period of Java usage in competitive programming. PS. I have found the solutions by both of you useful and got some ideas to enrich my toolbox for CP. Thanks for that as well. |
» » » » » » | It sseems most authors stopped to even pretending they care about Java — no reference solutions, and hence — problems with tl |
» » » » » » » |
» » » » » » » | @Egor I am getting this error.My intellij Ide is not opeoning Internal error. Please refer tohttps://jb.gg/ide/critical-startup-errors com.intellij.diagnostic.PluginException: Fatal error initializing 'net.egork.chelper.CHelperMain' [Plugin: CHelper] at com.intellij.serviceContainer.ComponentManagerImpl.handleInitComponentError$intellij_platform_serviceContainer(ComponentManagerImpl.kt:571) at com.intellij.serviceContainer.MyComponentAdapter.doCreateInstance(MyComponentAdapter.kt:59) at com.intellij.serviceContainer.BaseComponentAdapter.doCreateInstance(BaseComponentAdapter.kt:154) at com.intellij.serviceContainer.BaseComponentAdapter.createInstance$lambda$1(BaseComponentAdapter.kt:133) at com.intellij.openapi.progress.Cancellation.computeInNonCancelableSection(Cancellation.java:99) at com.intellij.serviceContainer.BaseComponentAdapter.createInstance(BaseComponentAdapter.kt:132) at com.intellij.serviceContainer.BaseComponentAdapter.getInstance(BaseComponentAdapter.kt:92) at com.intellij.serviceContainer.BaseComponentAdapter.getInstance$default(BaseComponentAdapter.kt:77) at com.intellij.serviceContainer.ComponentManagerImpl$createInitOldComponentsTask$1.invoke(ComponentManagerImpl.kt:394) at com.intellij.serviceContainer.ComponentManagerImpl$createInitOldComponentsTask$1.invoke(ComponentManagerImpl.kt:392) at com.intellij.idea.ApplicationLoader$initApplicationImpl$appInitializedListeners$1$1$2$1.invokeSuspend(ApplicationLoader.kt:139) at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:106) at java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:318) at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:779) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:730) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:724) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:749) at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:389) at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:207) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:128) at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:117) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:113) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:105) at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:92) Caused by: java.lang.NoClassDefFoundError: com/sun/net/ssl/HostnameVerifier at net.egork.chelper.CHelperMain.initComponent(CHelperMain.java:17) at com.intellij.serviceContainer.MyComponentAdapter.doCreateInstance(MyComponentAdapter.kt:45) ... 25 more Caused by: java.lang.ClassNotFoundException: com.sun.net.ssl.HostnameVerifier PluginClassLoader(plugin=PluginDescriptor(name=CHelper, id=CHelper, descriptorPath=plugin.xml, path=~\AppData\Roaming\JetBrains\IdeaIC2022.3\plugins\chelper, version=4.4.2, package=null, isBundled=false), packagePrefix=null, instanceId=107, state=active) at com.intellij.ide.plugins.cl.PluginClassLoader.loadClass(PluginClassLoader.java:217) at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520) ... 27 more ----- Your JRE: 17.0.5+1-b653.25 amd64 (JetBrains s.r.o.) C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2022.3.2\jbr |
» » » » » » » » | Yeah, sorry, it is not compatible with recent versions of idea |
» » » » » » » » » |
» » » » » » » » » |
» | Egor Getting the following error while try to run the program. Error: Could not find or load main class net.egork.chelper.tester.NewTester Caused by: java.lang.ClassNotFoundException: net.egork.chelper.tester.NewTester |
» |
» | I was able to resolve the most common errors while setting up chelper with competitive companion chrome extension. Tried to cover all possible errors in my video so that others don't have to read so many comments to solve the common bugs |
» | Hello, After installing the CHelper plugin, Intellij Idea fails to start up. IntelliJ Error stacktrace |
» » |
» » | Same Problem here. How did you resolve your issue. |
| Name |
|---|