├── .idea
├── compiler.xml
├── dataSources.local.xml
├── dataSources.xml
├── encodings.xml
├── misc.xml
├── uiDesigner.xml
├── vcs.xml
└── workspace.xml
├── README.md
├── pom.xml
├── practice_system.iml
├── src
└── main
│ ├── java
│ └── com
│ │ └── violetks
│ │ ├── complierun
│ │ ├── ByteJavaFileObject.java
│ │ ├── ClassFileManager.java
│ │ ├── JavaCompileRun.java
│ │ └── JavaSourceFromString.java
│ │ ├── dao
│ │ ├── BaseDao.java
│ │ ├── MarkDao.java
│ │ ├── QuestionDao.java
│ │ ├── RanklistDao.java
│ │ ├── RecordDao.java
│ │ ├── StudentDao.java
│ │ └── TeacherDao.java
│ │ ├── entity
│ │ ├── Mark.java
│ │ ├── Question.java
│ │ ├── Record.java
│ │ ├── Student.java
│ │ └── Teacher.java
│ │ ├── fileUtil
│ │ ├── CheckSame.java
│ │ ├── CodeInput.java
│ │ ├── CodeOutput.java
│ │ ├── FileInput.java
│ │ ├── FileOutput.java
│ │ └── StrSplit.java
│ │ ├── filter
│ │ └── LoginFilter.java
│ │ ├── service
│ │ ├── MarkService.java
│ │ ├── QuestionService.java
│ │ ├── RecordService.java
│ │ ├── StudentService.java
│ │ └── TeacherService.java
│ │ ├── servlet
│ │ ├── AddMarkServlet.java
│ │ ├── AddQuestionServlet.java
│ │ ├── CheckSameServlet.java
│ │ ├── CompileRunServlet.java
│ │ ├── DelQuestionServlet.java
│ │ ├── QuestionTestServlet.java
│ │ ├── SmsServlet.java
│ │ ├── StuLoginServlet.java
│ │ ├── StuRegisterServlet.java
│ │ ├── TeaLoginServlet.java
│ │ └── TeaRegisterServlet.java
│ │ └── smsUtil
│ │ ├── PhoneCode.java
│ │ └── StaticParam.java
│ ├── resources
│ ├── answer
│ │ ├── 1
│ │ │ ├── answer101.txt
│ │ │ └── example101.txt
│ │ ├── 2
│ │ │ ├── answer201.txt
│ │ │ ├── answer202.txt
│ │ │ ├── answer203.txt
│ │ │ ├── answer204.txt
│ │ │ ├── answer205.txt
│ │ │ ├── input201.txt
│ │ │ ├── input202.txt
│ │ │ ├── input203.txt
│ │ │ ├── input204.txt
│ │ │ └── input205.txt
│ │ ├── 3
│ │ │ ├── answer301.txt
│ │ │ ├── answer302.txt
│ │ │ ├── answer303.txt
│ │ │ ├── answer304.txt
│ │ │ ├── answer305.txt
│ │ │ ├── input301.txt
│ │ │ ├── input302.txt
│ │ │ ├── input303.txt
│ │ │ ├── input304.txt
│ │ │ └── input305.txt
│ │ ├── 4
│ │ │ ├── answer401.txt
│ │ │ ├── answer402.txt
│ │ │ ├── answer403.txt
│ │ │ ├── answer404.txt
│ │ │ ├── answer405.txt
│ │ │ ├── input401.txt
│ │ │ ├── input402.txt
│ │ │ ├── input403.txt
│ │ │ ├── input404.txt
│ │ │ └── input405.txt
│ │ ├── 5
│ │ │ ├── answer501.txt
│ │ │ ├── answer502.txt
│ │ │ ├── answer503.txt
│ │ │ ├── answer504.txt
│ │ │ ├── answer505.txt
│ │ │ ├── input501.txt
│ │ │ ├── input502.txt
│ │ │ ├── input503.txt
│ │ │ ├── input504.txt
│ │ │ └── input505.txt
│ │ ├── 6
│ │ │ └── answer601.txt
│ │ ├── 7
│ │ │ ├── answer701.txt
│ │ │ ├── answer702.txt
│ │ │ ├── answer703.txt
│ │ │ ├── answer704.txt
│ │ │ ├── answer705.txt
│ │ │ ├── input701.txt
│ │ │ ├── input702.txt
│ │ │ ├── input703.txt
│ │ │ ├── input704.txt
│ │ │ └── input705.txt
│ │ ├── 8
│ │ │ ├── answer801.txt
│ │ │ └── example801.txt
│ │ ├── 9
│ │ │ ├── answer901.txt
│ │ │ ├── answer902.txt
│ │ │ ├── answer903.txt
│ │ │ ├── answer904.txt
│ │ │ ├── answer905.txt
│ │ │ ├── input901.txt
│ │ │ ├── input902.txt
│ │ │ ├── input903.txt
│ │ │ ├── input904.txt
│ │ │ └── input905.txt
│ │ ├── 10
│ │ │ ├── answer1001.txt
│ │ │ ├── answer1002.txt
│ │ │ ├── answer1003.txt
│ │ │ ├── answer1004.txt
│ │ │ ├── answer1005.txt
│ │ │ ├── input1001.txt
│ │ │ ├── input1002.txt
│ │ │ ├── input1003.txt
│ │ │ ├── input1004.txt
│ │ │ └── input1005.txt
│ │ ├── 11
│ │ │ ├── answer1101.txt
│ │ │ ├── answer1102.txt
│ │ │ ├── answer1103.txt
│ │ │ ├── answer1104.txt
│ │ │ ├── answer1105.txt
│ │ │ ├── input1101.txt
│ │ │ ├── input1102.txt
│ │ │ ├── input1103.txt
│ │ │ ├── input1104.txt
│ │ │ └── input1105.txt
│ │ ├── 12
│ │ │ ├── answer1201.txt
│ │ │ ├── answer1202.txt
│ │ │ ├── answer1203.txt
│ │ │ ├── answer1204.txt
│ │ │ ├── answer1205.txt
│ │ │ ├── input1201.txt
│ │ │ ├── input1202.txt
│ │ │ ├── input1203.txt
│ │ │ ├── input1204.txt
│ │ │ └── input1205.txt
│ │ ├── 13
│ │ │ ├── answer1301.txt
│ │ │ ├── answer1302.txt
│ │ │ ├── answer1303.txt
│ │ │ ├── answer1304.txt
│ │ │ ├── answer1305.txt
│ │ │ ├── input1301.txt
│ │ │ ├── input1302.txt
│ │ │ ├── input1303.txt
│ │ │ ├── input1304.txt
│ │ │ └── input1305.txt
│ │ ├── 14
│ │ │ ├── answer1401.txt
│ │ │ └── example1401.txt
│ │ ├── 15
│ │ │ ├── answer1501.txt
│ │ │ └── example1501.txt
│ │ ├── 16
│ │ │ ├── answer1601.txt
│ │ │ ├── answer1602.txt
│ │ │ ├── answer1603.txt
│ │ │ ├── answer1604.txt
│ │ │ ├── answer1605.txt
│ │ │ ├── input1601.txt
│ │ │ ├── input1602.txt
│ │ │ ├── input1603.txt
│ │ │ ├── input1604.txt
│ │ │ └── input1605.txt
│ │ ├── 17
│ │ │ ├── answer1701.txt
│ │ │ ├── answer1702.txt
│ │ │ ├── answer1703.txt
│ │ │ ├── answer1704.txt
│ │ │ ├── answer1705.txt
│ │ │ ├── input1701.txt
│ │ │ ├── input1702.txt
│ │ │ ├── input1703.txt
│ │ │ ├── input1704.txt
│ │ │ └── input1705.txt
│ │ ├── 18
│ │ │ ├── answer1801.txt
│ │ │ └── example1801.txt
│ │ ├── 19
│ │ │ ├── answer1901.txt
│ │ │ ├── answer1902.txt
│ │ │ ├── answer1903.txt
│ │ │ ├── answer1904.txt
│ │ │ ├── answer1905.txt
│ │ │ ├── input1901.txt
│ │ │ ├── input1902.txt
│ │ │ ├── input1903.txt
│ │ │ ├── input1904.txt
│ │ │ └── input1905.txt
│ │ ├── 20
│ │ │ ├── answer2001.txt
│ │ │ ├── answer2002.txt
│ │ │ ├── answer2003.txt
│ │ │ ├── answer2004.txt
│ │ │ ├── answer2005.txt
│ │ │ ├── input2001.txt
│ │ │ ├── input2002.txt
│ │ │ ├── input2003.txt
│ │ │ ├── input2004.txt
│ │ │ └── input2005.txt
│ │ ├── 21
│ │ │ ├── answer2101.txt
│ │ │ ├── answer2102.txt
│ │ │ ├── answer2103.txt
│ │ │ ├── answer2104.txt
│ │ │ ├── answer2105.txt
│ │ │ ├── input2101.txt
│ │ │ ├── input2102.txt
│ │ │ ├── input2103.txt
│ │ │ ├── input2104.txt
│ │ │ └── input2105.txt
│ │ ├── 22
│ │ │ ├── answer2201.txt
│ │ │ ├── answer2202.txt
│ │ │ ├── answer2203.txt
│ │ │ ├── answer2204.txt
│ │ │ ├── answer2205.txt
│ │ │ ├── input2201.txt
│ │ │ ├── input2202.txt
│ │ │ ├── input2203.txt
│ │ │ ├── input2204.txt
│ │ │ └── input2205.txt
│ │ ├── 23
│ │ │ ├── answer2301.txt
│ │ │ ├── answer2302.txt
│ │ │ ├── answer2303.txt
│ │ │ ├── answer2304.txt
│ │ │ ├── answer2305.txt
│ │ │ ├── input2301.txt
│ │ │ ├── input2302.txt
│ │ │ ├── input2303.txt
│ │ │ ├── input2304.txt
│ │ │ └── input2305.txt
│ │ ├── 24
│ │ │ ├── answer2401.txt
│ │ │ ├── answer2402.txt
│ │ │ ├── answer2403.txt
│ │ │ ├── answer2404.txt
│ │ │ ├── answer2405.txt
│ │ │ ├── input2401.txt
│ │ │ ├── input2402.txt
│ │ │ ├── input2403.txt
│ │ │ ├── input2404.txt
│ │ │ └── input2405.txt
│ │ ├── 25
│ │ │ ├── answer2501.txt
│ │ │ ├── answer2502.txt
│ │ │ ├── answer2503.txt
│ │ │ ├── answer2504.txt
│ │ │ ├── answer2505.txt
│ │ │ ├── input2501.txt
│ │ │ ├── input2502.txt
│ │ │ ├── input2503.txt
│ │ │ ├── input2504.txt
│ │ │ └── input2505.txt
│ │ ├── 26
│ │ │ ├── answer2601.txt
│ │ │ ├── answer2602.txt
│ │ │ ├── answer2603.txt
│ │ │ ├── answer2604.txt
│ │ │ ├── answer2605.txt
│ │ │ ├── input2601.txt
│ │ │ ├── input2602.txt
│ │ │ ├── input2603.txt
│ │ │ ├── input2604.txt
│ │ │ └── input2605.txt
│ │ ├── 27
│ │ │ ├── answer2701.txt
│ │ │ ├── answer2702.txt
│ │ │ ├── answer2703.txt
│ │ │ ├── answer2704.txt
│ │ │ ├── answer2705.txt
│ │ │ ├── input2701.txt
│ │ │ ├── input2702.txt
│ │ │ ├── input2703.txt
│ │ │ ├── input2704.txt
│ │ │ └── input2705.txt
│ │ ├── 28
│ │ │ ├── answer2801.txt
│ │ │ ├── answer2802.txt
│ │ │ ├── answer2803.txt
│ │ │ ├── answer2804.txt
│ │ │ ├── answer2805.txt
│ │ │ ├── input2801.txt
│ │ │ ├── input2802.txt
│ │ │ ├── input2803.txt
│ │ │ ├── input2804.txt
│ │ │ └── input2805.txt
│ │ ├── 29
│ │ │ ├── answer2901.txt
│ │ │ ├── answer2902.txt
│ │ │ ├── answer2903.txt
│ │ │ ├── answer2904.txt
│ │ │ ├── answer2905.txt
│ │ │ ├── input2901.txt
│ │ │ ├── input2902.txt
│ │ │ ├── input2903.txt
│ │ │ ├── input2904.txt
│ │ │ └── input2905.txt
│ │ ├── 30
│ │ │ ├── answer3001.txt
│ │ │ ├── answer3002.txt
│ │ │ ├── answer3003.txt
│ │ │ ├── answer3004.txt
│ │ │ ├── answer3005.txt
│ │ │ ├── input3001.txt
│ │ │ ├── input3002.txt
│ │ │ ├── input3003.txt
│ │ │ ├── input3004.txt
│ │ │ └── input3005.txt
│ │ └── 36
│ │ │ ├── answer3601.txt
│ │ │ ├── answer3602.txt
│ │ │ ├── input3601.txt
│ │ │ └── input3602.txt
│ ├── codeStr
│ │ └── 2016206929
│ │ │ ├── 1.txt
│ │ │ └── 4.txt
│ └── output
│ │ └── 2016206929
│ │ ├── 101.txt
│ │ ├── 401.txt
│ │ ├── 402.txt
│ │ ├── 403.txt
│ │ ├── 404.txt
│ │ └── 405.txt
│ ├── test
│ ├── TestAddQuestion.java
│ ├── TestCheckSame.java
│ ├── TestDeleteQuestion.java
│ ├── TestDirectoryLength.java
│ ├── TestFileCompare.java
│ ├── TestFileCompileRun.java
│ ├── TestFileInput.java
│ ├── TestFileOutput.java
│ ├── TestScanner.java
│ ├── TestSms.java
│ ├── TestStudentDao.java
│ └── TestTeacherDao.java
│ └── webapp
│ ├── WEB-INF
│ └── web.xml
│ ├── css
│ ├── base.css
│ ├── categorySet.css
│ ├── exerciseSet.css
│ ├── index.css
│ ├── inputQuestion.css
│ ├── login.css
│ ├── programSet.css
│ ├── question.css
│ ├── questionInput.css
│ ├── questionList.css
│ ├── questionSet.css
│ ├── questionTest.css
│ ├── rankList.css
│ ├── resetPwd.css
│ ├── stuRegister.css
│ ├── studentTest.css
│ ├── teaManager.css
│ └── viewQuestion.css
│ ├── index.jsp
│ ├── logout.jsp
│ ├── resetPwd.jsp
│ ├── stuRegister.jsp
│ ├── student
│ ├── categorySet.jsp
│ ├── compileRun.jsp
│ ├── exerciseSet.jsp
│ ├── fillBlankQItem.jsp
│ ├── programQItem.jsp
│ ├── questionLevelSet.jsp
│ ├── questionSet.jsp
│ ├── rankList.jsp
│ └── singleChoiceQItem.jsp
│ ├── studentLogin.jsp
│ ├── teaRegister.jsp
│ ├── teacher
│ ├── inputFillBlank.jsp
│ ├── inputProgram.jsp
│ ├── inputSingleChoice.jsp
│ ├── questionCheck.jsp
│ ├── questionInput.jsp
│ ├── questionList.jsp
│ ├── studentList.jsp
│ ├── studentRank.jsp
│ ├── studentTest.jsp
│ ├── teacherAdmin.jsp
│ ├── teacherManager.jsp
│ ├── viewQuestion.jsp
│ └── viewStudent.jsp
│ ├── teacherLogin.jsp
│ └── tinymce
│ └── zh_CN.js
└── target
├── classes
├── META-INF
│ └── practice_system.kotlin_module
├── answer
│ ├── 1
│ │ ├── answer101.txt
│ │ └── example101.txt
│ ├── 2
│ │ ├── answer201.txt
│ │ ├── answer202.txt
│ │ ├── answer203.txt
│ │ ├── answer204.txt
│ │ ├── answer205.txt
│ │ ├── input201.txt
│ │ ├── input202.txt
│ │ ├── input203.txt
│ │ ├── input204.txt
│ │ └── input205.txt
│ ├── 3
│ │ ├── answer301.txt
│ │ ├── answer302.txt
│ │ ├── answer303.txt
│ │ ├── answer304.txt
│ │ ├── answer305.txt
│ │ ├── input301.txt
│ │ ├── input302.txt
│ │ ├── input303.txt
│ │ ├── input304.txt
│ │ └── input305.txt
│ ├── 4
│ │ ├── answer401.txt
│ │ ├── answer402.txt
│ │ ├── answer403.txt
│ │ ├── answer404.txt
│ │ ├── answer405.txt
│ │ ├── input401.txt
│ │ ├── input402.txt
│ │ ├── input403.txt
│ │ ├── input404.txt
│ │ └── input405.txt
│ ├── 5
│ │ ├── answer501.txt
│ │ ├── answer502.txt
│ │ ├── answer503.txt
│ │ ├── answer504.txt
│ │ ├── answer505.txt
│ │ ├── input501.txt
│ │ ├── input502.txt
│ │ ├── input503.txt
│ │ ├── input504.txt
│ │ └── input505.txt
│ ├── 6
│ │ └── answer601.txt
│ ├── 7
│ │ ├── answer701.txt
│ │ ├── answer702.txt
│ │ ├── answer703.txt
│ │ ├── answer704.txt
│ │ ├── answer705.txt
│ │ ├── input701.txt
│ │ ├── input702.txt
│ │ ├── input703.txt
│ │ ├── input704.txt
│ │ └── input705.txt
│ ├── 8
│ │ ├── answer801.txt
│ │ └── example801.txt
│ ├── 9
│ │ ├── answer901.txt
│ │ ├── answer902.txt
│ │ ├── answer903.txt
│ │ ├── answer904.txt
│ │ ├── answer905.txt
│ │ ├── input901.txt
│ │ ├── input902.txt
│ │ ├── input903.txt
│ │ ├── input904.txt
│ │ └── input905.txt
│ ├── 10
│ │ ├── answer1001.txt
│ │ ├── answer1002.txt
│ │ ├── answer1003.txt
│ │ ├── answer1004.txt
│ │ ├── answer1005.txt
│ │ ├── input1001.txt
│ │ ├── input1002.txt
│ │ ├── input1003.txt
│ │ ├── input1004.txt
│ │ └── input1005.txt
│ ├── 11
│ │ ├── answer1101.txt
│ │ ├── answer1102.txt
│ │ ├── answer1103.txt
│ │ ├── answer1104.txt
│ │ ├── answer1105.txt
│ │ ├── input1101.txt
│ │ ├── input1102.txt
│ │ ├── input1103.txt
│ │ ├── input1104.txt
│ │ └── input1105.txt
│ ├── 12
│ │ ├── answer1201.txt
│ │ ├── answer1202.txt
│ │ ├── answer1203.txt
│ │ ├── answer1204.txt
│ │ ├── answer1205.txt
│ │ ├── input1201.txt
│ │ ├── input1202.txt
│ │ ├── input1203.txt
│ │ ├── input1204.txt
│ │ └── input1205.txt
│ ├── 13
│ │ ├── answer1301.txt
│ │ ├── answer1302.txt
│ │ ├── answer1303.txt
│ │ ├── answer1304.txt
│ │ ├── answer1305.txt
│ │ ├── input1301.txt
│ │ ├── input1302.txt
│ │ ├── input1303.txt
│ │ ├── input1304.txt
│ │ └── input1305.txt
│ ├── 14
│ │ ├── answer1401.txt
│ │ └── example1401.txt
│ ├── 15
│ │ ├── answer1501.txt
│ │ └── example1501.txt
│ ├── 16
│ │ ├── answer1601.txt
│ │ ├── answer1602.txt
│ │ ├── answer1603.txt
│ │ ├── answer1604.txt
│ │ ├── answer1605.txt
│ │ ├── input1601.txt
│ │ ├── input1602.txt
│ │ ├── input1603.txt
│ │ ├── input1604.txt
│ │ └── input1605.txt
│ ├── 17
│ │ ├── answer1701.txt
│ │ ├── answer1702.txt
│ │ ├── answer1703.txt
│ │ ├── answer1704.txt
│ │ ├── answer1705.txt
│ │ ├── input1701.txt
│ │ ├── input1702.txt
│ │ ├── input1703.txt
│ │ ├── input1704.txt
│ │ └── input1705.txt
│ ├── 18
│ │ ├── answer1801.txt
│ │ └── example1801.txt
│ ├── 19
│ │ ├── answer1901.txt
│ │ ├── answer1902.txt
│ │ ├── answer1903.txt
│ │ ├── answer1904.txt
│ │ ├── answer1905.txt
│ │ ├── input1901.txt
│ │ ├── input1902.txt
│ │ ├── input1903.txt
│ │ ├── input1904.txt
│ │ └── input1905.txt
│ ├── 20
│ │ ├── answer2001.txt
│ │ ├── answer2002.txt
│ │ ├── answer2003.txt
│ │ ├── answer2004.txt
│ │ ├── answer2005.txt
│ │ ├── input2001.txt
│ │ ├── input2002.txt
│ │ ├── input2003.txt
│ │ ├── input2004.txt
│ │ └── input2005.txt
│ ├── 21
│ │ ├── answer2101.txt
│ │ ├── answer2102.txt
│ │ ├── answer2103.txt
│ │ ├── answer2104.txt
│ │ ├── answer2105.txt
│ │ ├── input2101.txt
│ │ ├── input2102.txt
│ │ ├── input2103.txt
│ │ ├── input2104.txt
│ │ └── input2105.txt
│ ├── 22
│ │ ├── answer2201.txt
│ │ ├── answer2202.txt
│ │ ├── answer2203.txt
│ │ ├── answer2204.txt
│ │ ├── answer2205.txt
│ │ ├── input2201.txt
│ │ ├── input2202.txt
│ │ ├── input2203.txt
│ │ ├── input2204.txt
│ │ └── input2205.txt
│ ├── 23
│ │ ├── answer2301.txt
│ │ ├── answer2302.txt
│ │ ├── answer2303.txt
│ │ ├── answer2304.txt
│ │ ├── answer2305.txt
│ │ ├── input2301.txt
│ │ ├── input2302.txt
│ │ ├── input2303.txt
│ │ ├── input2304.txt
│ │ └── input2305.txt
│ ├── 24
│ │ ├── answer2401.txt
│ │ ├── answer2402.txt
│ │ ├── answer2403.txt
│ │ ├── answer2404.txt
│ │ ├── answer2405.txt
│ │ ├── input2401.txt
│ │ ├── input2402.txt
│ │ ├── input2403.txt
│ │ ├── input2404.txt
│ │ └── input2405.txt
│ ├── 25
│ │ ├── answer2501.txt
│ │ ├── answer2502.txt
│ │ ├── answer2503.txt
│ │ ├── answer2504.txt
│ │ ├── answer2505.txt
│ │ ├── input2501.txt
│ │ ├── input2502.txt
│ │ ├── input2503.txt
│ │ ├── input2504.txt
│ │ └── input2505.txt
│ ├── 26
│ │ ├── answer2601.txt
│ │ ├── answer2602.txt
│ │ ├── answer2603.txt
│ │ ├── answer2604.txt
│ │ ├── answer2605.txt
│ │ ├── input2601.txt
│ │ ├── input2602.txt
│ │ ├── input2603.txt
│ │ ├── input2604.txt
│ │ └── input2605.txt
│ ├── 27
│ │ ├── answer2701.txt
│ │ ├── answer2702.txt
│ │ ├── answer2703.txt
│ │ ├── answer2704.txt
│ │ ├── answer2705.txt
│ │ ├── input2701.txt
│ │ ├── input2702.txt
│ │ ├── input2703.txt
│ │ ├── input2704.txt
│ │ └── input2705.txt
│ ├── 28
│ │ ├── answer2801.txt
│ │ ├── answer2802.txt
│ │ ├── answer2803.txt
│ │ ├── answer2804.txt
│ │ ├── answer2805.txt
│ │ ├── input2801.txt
│ │ ├── input2802.txt
│ │ ├── input2803.txt
│ │ ├── input2804.txt
│ │ └── input2805.txt
│ ├── 29
│ │ ├── answer2901.txt
│ │ ├── answer2902.txt
│ │ ├── answer2903.txt
│ │ ├── answer2904.txt
│ │ ├── answer2905.txt
│ │ ├── input2901.txt
│ │ ├── input2902.txt
│ │ ├── input2903.txt
│ │ ├── input2904.txt
│ │ └── input2905.txt
│ ├── 30
│ │ ├── answer3001.txt
│ │ ├── answer3002.txt
│ │ ├── answer3003.txt
│ │ ├── answer3004.txt
│ │ ├── answer3005.txt
│ │ ├── input3001.txt
│ │ ├── input3002.txt
│ │ ├── input3003.txt
│ │ ├── input3004.txt
│ │ └── input3005.txt
│ └── 36
│ │ ├── answer3601.txt
│ │ ├── answer3602.txt
│ │ ├── input3601.txt
│ │ └── input3602.txt
├── codeStr
│ └── 2016206929
│ │ ├── 1.txt
│ │ └── 4.txt
├── com
│ └── violetks
│ │ ├── complierun
│ │ ├── ByteJavaFileObject.class
│ │ ├── ClassFileManager$1.class
│ │ ├── ClassFileManager.class
│ │ ├── JavaCompileRun.class
│ │ └── JavaSourceFromString.class
│ │ ├── dao
│ │ ├── BaseDao.class
│ │ ├── MarkDao.class
│ │ ├── QuestionDao.class
│ │ ├── RanklistDao.class
│ │ ├── RecordDao.class
│ │ ├── StudentDao.class
│ │ └── TeacherDao.class
│ │ ├── entity
│ │ ├── Mark.class
│ │ ├── Question.class
│ │ ├── Record.class
│ │ ├── Student.class
│ │ └── Teacher.class
│ │ ├── fileUtil
│ │ ├── CheckSame.class
│ │ ├── CodeInput.class
│ │ ├── CodeOutput.class
│ │ ├── FileInput.class
│ │ ├── FileOutput.class
│ │ └── StrSplit.class
│ │ ├── filter
│ │ └── LoginFilter.class
│ │ ├── service
│ │ ├── MarkService.class
│ │ ├── QuestionService.class
│ │ ├── RecordService.class
│ │ ├── StudentService.class
│ │ └── TeacherService.class
│ │ ├── servlet
│ │ ├── AddMarkServlet.class
│ │ ├── AddQuestionServlet.class
│ │ ├── CheckSameServlet.class
│ │ ├── CompileRunServlet.class
│ │ ├── DelQuestionServlet.class
│ │ ├── QuestionTestServlet.class
│ │ ├── SmsServlet.class
│ │ ├── StuLoginServlet.class
│ │ ├── StuRegisterServlet.class
│ │ ├── TeaLoginServlet.class
│ │ └── TeaRegisterServlet.class
│ │ └── smsUtil
│ │ ├── PhoneCode.class
│ │ └── StaticParam.class
└── output
│ └── 2016206929
│ ├── 101.txt
│ ├── 401.txt
│ ├── 402.txt
│ ├── 403.txt
│ ├── 404.txt
│ └── 405.txt
├── maven-archiver
└── pom.properties
├── maven-status
└── maven-compiler-plugin
│ └── compile
│ └── default-compile
│ └── inputFiles.lst
├── practice_system.war
├── practice_system
├── META-INF
│ └── MANIFEST.MF
├── WEB-INF
│ ├── classes
│ │ ├── META-INF
│ │ │ └── practice_system.kotlin_module
│ │ ├── answer
│ │ │ ├── 1
│ │ │ │ ├── answer101.txt
│ │ │ │ └── example101.txt
│ │ │ ├── 2
│ │ │ │ ├── answer201.txt
│ │ │ │ ├── answer202.txt
│ │ │ │ ├── answer203.txt
│ │ │ │ ├── answer204.txt
│ │ │ │ ├── answer205.txt
│ │ │ │ ├── input201.txt
│ │ │ │ ├── input202.txt
│ │ │ │ ├── input203.txt
│ │ │ │ ├── input204.txt
│ │ │ │ └── input205.txt
│ │ │ ├── 3
│ │ │ │ ├── answer301.txt
│ │ │ │ ├── answer302.txt
│ │ │ │ ├── answer303.txt
│ │ │ │ ├── answer304.txt
│ │ │ │ ├── answer305.txt
│ │ │ │ ├── input301.txt
│ │ │ │ ├── input302.txt
│ │ │ │ ├── input303.txt
│ │ │ │ ├── input304.txt
│ │ │ │ └── input305.txt
│ │ │ ├── 4
│ │ │ │ ├── answer401.txt
│ │ │ │ ├── answer402.txt
│ │ │ │ ├── answer403.txt
│ │ │ │ ├── answer404.txt
│ │ │ │ ├── answer405.txt
│ │ │ │ ├── input401.txt
│ │ │ │ ├── input402.txt
│ │ │ │ ├── input403.txt
│ │ │ │ ├── input404.txt
│ │ │ │ └── input405.txt
│ │ │ ├── 5
│ │ │ │ ├── answer501.txt
│ │ │ │ ├── answer502.txt
│ │ │ │ ├── answer503.txt
│ │ │ │ ├── answer504.txt
│ │ │ │ ├── answer505.txt
│ │ │ │ ├── input501.txt
│ │ │ │ ├── input502.txt
│ │ │ │ ├── input503.txt
│ │ │ │ ├── input504.txt
│ │ │ │ └── input505.txt
│ │ │ ├── 6
│ │ │ │ └── answer601.txt
│ │ │ ├── 7
│ │ │ │ ├── answer701.txt
│ │ │ │ ├── answer702.txt
│ │ │ │ ├── answer703.txt
│ │ │ │ ├── answer704.txt
│ │ │ │ ├── answer705.txt
│ │ │ │ ├── input701.txt
│ │ │ │ ├── input702.txt
│ │ │ │ ├── input703.txt
│ │ │ │ ├── input704.txt
│ │ │ │ └── input705.txt
│ │ │ ├── 8
│ │ │ │ ├── answer801.txt
│ │ │ │ └── example801.txt
│ │ │ ├── 9
│ │ │ │ ├── answer901.txt
│ │ │ │ ├── answer902.txt
│ │ │ │ ├── answer903.txt
│ │ │ │ ├── answer904.txt
│ │ │ │ ├── answer905.txt
│ │ │ │ ├── input901.txt
│ │ │ │ ├── input902.txt
│ │ │ │ ├── input903.txt
│ │ │ │ ├── input904.txt
│ │ │ │ └── input905.txt
│ │ │ ├── 10
│ │ │ │ ├── answer1001.txt
│ │ │ │ ├── answer1002.txt
│ │ │ │ ├── answer1003.txt
│ │ │ │ ├── answer1004.txt
│ │ │ │ ├── answer1005.txt
│ │ │ │ ├── input1001.txt
│ │ │ │ ├── input1002.txt
│ │ │ │ ├── input1003.txt
│ │ │ │ ├── input1004.txt
│ │ │ │ └── input1005.txt
│ │ │ ├── 11
│ │ │ │ ├── answer1101.txt
│ │ │ │ ├── answer1102.txt
│ │ │ │ ├── answer1103.txt
│ │ │ │ ├── answer1104.txt
│ │ │ │ ├── answer1105.txt
│ │ │ │ ├── input1101.txt
│ │ │ │ ├── input1102.txt
│ │ │ │ ├── input1103.txt
│ │ │ │ ├── input1104.txt
│ │ │ │ └── input1105.txt
│ │ │ ├── 12
│ │ │ │ ├── answer1201.txt
│ │ │ │ ├── answer1202.txt
│ │ │ │ ├── answer1203.txt
│ │ │ │ ├── answer1204.txt
│ │ │ │ ├── answer1205.txt
│ │ │ │ ├── input1201.txt
│ │ │ │ ├── input1202.txt
│ │ │ │ ├── input1203.txt
│ │ │ │ ├── input1204.txt
│ │ │ │ └── input1205.txt
│ │ │ ├── 13
│ │ │ │ ├── answer1301.txt
│ │ │ │ ├── answer1302.txt
│ │ │ │ ├── answer1303.txt
│ │ │ │ ├── answer1304.txt
│ │ │ │ ├── answer1305.txt
│ │ │ │ ├── input1301.txt
│ │ │ │ ├── input1302.txt
│ │ │ │ ├── input1303.txt
│ │ │ │ ├── input1304.txt
│ │ │ │ └── input1305.txt
│ │ │ ├── 14
│ │ │ │ ├── answer1401.txt
│ │ │ │ └── example1401.txt
│ │ │ ├── 15
│ │ │ │ ├── answer1501.txt
│ │ │ │ └── example1501.txt
│ │ │ ├── 16
│ │ │ │ ├── answer1601.txt
│ │ │ │ ├── answer1602.txt
│ │ │ │ ├── answer1603.txt
│ │ │ │ ├── answer1604.txt
│ │ │ │ ├── answer1605.txt
│ │ │ │ ├── input1601.txt
│ │ │ │ ├── input1602.txt
│ │ │ │ ├── input1603.txt
│ │ │ │ ├── input1604.txt
│ │ │ │ └── input1605.txt
│ │ │ ├── 17
│ │ │ │ ├── answer1701.txt
│ │ │ │ ├── answer1702.txt
│ │ │ │ ├── answer1703.txt
│ │ │ │ ├── answer1704.txt
│ │ │ │ ├── answer1705.txt
│ │ │ │ ├── input1701.txt
│ │ │ │ ├── input1702.txt
│ │ │ │ ├── input1703.txt
│ │ │ │ ├── input1704.txt
│ │ │ │ └── input1705.txt
│ │ │ ├── 18
│ │ │ │ ├── answer1801.txt
│ │ │ │ └── example1801.txt
│ │ │ ├── 19
│ │ │ │ ├── answer1901.txt
│ │ │ │ ├── answer1902.txt
│ │ │ │ ├── answer1903.txt
│ │ │ │ ├── answer1904.txt
│ │ │ │ ├── answer1905.txt
│ │ │ │ ├── input1901.txt
│ │ │ │ ├── input1902.txt
│ │ │ │ ├── input1903.txt
│ │ │ │ ├── input1904.txt
│ │ │ │ └── input1905.txt
│ │ │ ├── 20
│ │ │ │ ├── answer2001.txt
│ │ │ │ ├── answer2002.txt
│ │ │ │ ├── answer2003.txt
│ │ │ │ ├── answer2004.txt
│ │ │ │ ├── answer2005.txt
│ │ │ │ ├── input2001.txt
│ │ │ │ ├── input2002.txt
│ │ │ │ ├── input2003.txt
│ │ │ │ ├── input2004.txt
│ │ │ │ └── input2005.txt
│ │ │ ├── 21
│ │ │ │ ├── answer2101.txt
│ │ │ │ ├── answer2102.txt
│ │ │ │ ├── answer2103.txt
│ │ │ │ ├── answer2104.txt
│ │ │ │ ├── answer2105.txt
│ │ │ │ ├── input2101.txt
│ │ │ │ ├── input2102.txt
│ │ │ │ ├── input2103.txt
│ │ │ │ ├── input2104.txt
│ │ │ │ └── input2105.txt
│ │ │ ├── 22
│ │ │ │ ├── answer2201.txt
│ │ │ │ ├── answer2202.txt
│ │ │ │ ├── answer2203.txt
│ │ │ │ ├── answer2204.txt
│ │ │ │ ├── answer2205.txt
│ │ │ │ ├── input2201.txt
│ │ │ │ ├── input2202.txt
│ │ │ │ ├── input2203.txt
│ │ │ │ ├── input2204.txt
│ │ │ │ └── input2205.txt
│ │ │ ├── 23
│ │ │ │ ├── answer2301.txt
│ │ │ │ ├── answer2302.txt
│ │ │ │ ├── answer2303.txt
│ │ │ │ ├── answer2304.txt
│ │ │ │ ├── answer2305.txt
│ │ │ │ ├── input2301.txt
│ │ │ │ ├── input2302.txt
│ │ │ │ ├── input2303.txt
│ │ │ │ ├── input2304.txt
│ │ │ │ └── input2305.txt
│ │ │ ├── 24
│ │ │ │ ├── answer2401.txt
│ │ │ │ ├── answer2402.txt
│ │ │ │ ├── answer2403.txt
│ │ │ │ ├── answer2404.txt
│ │ │ │ ├── answer2405.txt
│ │ │ │ ├── input2401.txt
│ │ │ │ ├── input2402.txt
│ │ │ │ ├── input2403.txt
│ │ │ │ ├── input2404.txt
│ │ │ │ └── input2405.txt
│ │ │ ├── 25
│ │ │ │ ├── answer2501.txt
│ │ │ │ ├── answer2502.txt
│ │ │ │ ├── answer2503.txt
│ │ │ │ ├── answer2504.txt
│ │ │ │ ├── answer2505.txt
│ │ │ │ ├── input2501.txt
│ │ │ │ ├── input2502.txt
│ │ │ │ ├── input2503.txt
│ │ │ │ ├── input2504.txt
│ │ │ │ └── input2505.txt
│ │ │ ├── 26
│ │ │ │ ├── answer2601.txt
│ │ │ │ ├── answer2602.txt
│ │ │ │ ├── answer2603.txt
│ │ │ │ ├── answer2604.txt
│ │ │ │ ├── answer2605.txt
│ │ │ │ ├── input2601.txt
│ │ │ │ ├── input2602.txt
│ │ │ │ ├── input2603.txt
│ │ │ │ ├── input2604.txt
│ │ │ │ └── input2605.txt
│ │ │ ├── 27
│ │ │ │ ├── answer2701.txt
│ │ │ │ ├── answer2702.txt
│ │ │ │ ├── answer2703.txt
│ │ │ │ ├── answer2704.txt
│ │ │ │ ├── answer2705.txt
│ │ │ │ ├── input2701.txt
│ │ │ │ ├── input2702.txt
│ │ │ │ ├── input2703.txt
│ │ │ │ ├── input2704.txt
│ │ │ │ └── input2705.txt
│ │ │ ├── 28
│ │ │ │ ├── answer2801.txt
│ │ │ │ ├── answer2802.txt
│ │ │ │ ├── answer2803.txt
│ │ │ │ ├── answer2804.txt
│ │ │ │ ├── answer2805.txt
│ │ │ │ ├── input2801.txt
│ │ │ │ ├── input2802.txt
│ │ │ │ ├── input2803.txt
│ │ │ │ ├── input2804.txt
│ │ │ │ └── input2805.txt
│ │ │ ├── 29
│ │ │ │ ├── answer2901.txt
│ │ │ │ ├── answer2902.txt
│ │ │ │ ├── answer2903.txt
│ │ │ │ ├── answer2904.txt
│ │ │ │ ├── answer2905.txt
│ │ │ │ ├── input2901.txt
│ │ │ │ ├── input2902.txt
│ │ │ │ ├── input2903.txt
│ │ │ │ ├── input2904.txt
│ │ │ │ └── input2905.txt
│ │ │ ├── 30
│ │ │ │ ├── answer3001.txt
│ │ │ │ ├── answer3002.txt
│ │ │ │ ├── answer3003.txt
│ │ │ │ ├── answer3004.txt
│ │ │ │ ├── answer3005.txt
│ │ │ │ ├── input3001.txt
│ │ │ │ ├── input3002.txt
│ │ │ │ ├── input3003.txt
│ │ │ │ ├── input3004.txt
│ │ │ │ └── input3005.txt
│ │ │ └── 36
│ │ │ │ ├── answer3601.txt
│ │ │ │ ├── answer3602.txt
│ │ │ │ ├── input3601.txt
│ │ │ │ └── input3602.txt
│ │ ├── codeStr
│ │ │ └── 2016206929
│ │ │ │ ├── 1.txt
│ │ │ │ └── 4.txt
│ │ ├── com
│ │ │ └── violetks
│ │ │ │ ├── complierun
│ │ │ │ ├── ByteJavaFileObject.class
│ │ │ │ ├── ClassFileManager$1.class
│ │ │ │ ├── ClassFileManager.class
│ │ │ │ ├── JavaCompileRun.class
│ │ │ │ └── JavaSourceFromString.class
│ │ │ │ ├── dao
│ │ │ │ ├── BaseDao.class
│ │ │ │ ├── MarkDao.class
│ │ │ │ ├── QuestionDao.class
│ │ │ │ ├── RanklistDao.class
│ │ │ │ ├── RecordDao.class
│ │ │ │ ├── StudentDao.class
│ │ │ │ └── TeacherDao.class
│ │ │ │ ├── entity
│ │ │ │ ├── Mark.class
│ │ │ │ ├── Question.class
│ │ │ │ ├── Record.class
│ │ │ │ ├── Student.class
│ │ │ │ └── Teacher.class
│ │ │ │ ├── fileUtil
│ │ │ │ ├── CheckSame.class
│ │ │ │ ├── CodeInput.class
│ │ │ │ ├── CodeOutput.class
│ │ │ │ ├── FileInput.class
│ │ │ │ ├── FileOutput.class
│ │ │ │ └── StrSplit.class
│ │ │ │ ├── filter
│ │ │ │ └── LoginFilter.class
│ │ │ │ ├── service
│ │ │ │ ├── MarkService.class
│ │ │ │ ├── QuestionService.class
│ │ │ │ ├── RecordService.class
│ │ │ │ ├── StudentService.class
│ │ │ │ └── TeacherService.class
│ │ │ │ ├── servlet
│ │ │ │ ├── AddMarkServlet.class
│ │ │ │ ├── AddQuestionServlet.class
│ │ │ │ ├── CheckSameServlet.class
│ │ │ │ ├── CompileRunServlet.class
│ │ │ │ ├── DelQuestionServlet.class
│ │ │ │ ├── QuestionTestServlet.class
│ │ │ │ ├── SmsServlet.class
│ │ │ │ ├── StuLoginServlet.class
│ │ │ │ ├── StuRegisterServlet.class
│ │ │ │ ├── TeaLoginServlet.class
│ │ │ │ └── TeaRegisterServlet.class
│ │ │ │ └── smsUtil
│ │ │ │ ├── PhoneCode.class
│ │ │ │ └── StaticParam.class
│ │ └── output
│ │ │ └── 2016206929
│ │ │ ├── 101.txt
│ │ │ ├── 401.txt
│ │ │ ├── 402.txt
│ │ │ ├── 403.txt
│ │ │ ├── 404.txt
│ │ │ └── 405.txt
│ ├── lib
│ │ ├── aliyun-java-sdk-core-3.7.1.jar
│ │ ├── aliyun-java-sdk-dysmsapi-1.1.0.jar
│ │ ├── json-20170516.jar
│ │ └── mysql-connector-java-5.1.47.jar
│ └── web.xml
├── css
│ ├── base.css
│ ├── categorySet.css
│ ├── exerciseSet.css
│ ├── index.css
│ ├── inputQuestion.css
│ ├── login.css
│ ├── programSet.css
│ ├── question.css
│ ├── questionInput.css
│ ├── questionList.css
│ ├── questionSet.css
│ ├── questionTest.css
│ ├── rankList.css
│ ├── resetPwd.css
│ ├── stuRegister.css
│ ├── studentTest.css
│ ├── teaManager.css
│ └── viewQuestion.css
├── index.jsp
├── logout.jsp
├── resetPwd.jsp
├── stuRegister.jsp
├── student
│ ├── categorySet.jsp
│ ├── compileRun.jsp
│ ├── exerciseSet.jsp
│ ├── fillBlankQItem.jsp
│ ├── programQItem.jsp
│ ├── questionLevelSet.jsp
│ ├── questionSet.jsp
│ ├── rankList.jsp
│ └── singleChoiceQItem.jsp
├── studentLogin.jsp
├── teaRegister.jsp
├── teacher
│ ├── inputFillBlank.jsp
│ ├── inputProgram.jsp
│ ├── inputSingleChoice.jsp
│ ├── questionCheck.jsp
│ ├── questionInput.jsp
│ ├── questionList.jsp
│ ├── studentList.jsp
│ ├── studentRank.jsp
│ ├── studentTest.jsp
│ ├── teacherAdmin.jsp
│ ├── teacherManager.jsp
│ ├── viewQuestion.jsp
│ └── viewStudent.jsp
├── teacherLogin.jsp
└── tinymce
│ └── zh_CN.js
└── test-classes
├── META-INF
└── practice_system.kotlin_module
├── TestAddQuestion.class
├── TestCheckSame.class
├── TestDeleteQuestion.class
├── TestDirectoryLength.class
├── TestFileCompare.class
├── TestFileCompileRun.class
├── TestFileInput.class
├── TestFileOutput.class
├── TestScanner.class
├── TestSms.class
├── TestStudentDao.class
└── TestTeacherDao.class
/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/.idea/dataSources.local.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | master_key
7 | root
8 |
9 |
10 |
--------------------------------------------------------------------------------
/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/practice_system.iml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/main/java/com/violetks/fileUtil/StrSplit.java:
--------------------------------------------------------------------------------
1 | package com.violetks.fileUtil;
2 |
3 | /**
4 | * 把多行文本拆分成二维数组
5 | */
6 | public class StrSplit {
7 | public String[][] strSplit(String str) {
8 | String[] s1 = str.split("\\n|\r\n");//把多行拆分
9 | String a[][] = new String[s1.length][];
10 | for (int i = 0; i < s1.length; i++) {
11 | a[i] = s1[i].split("\\s+");
12 | }
13 | return a;
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/src/main/java/com/violetks/service/MarkService.java:
--------------------------------------------------------------------------------
1 | package com.violetks.service;
2 |
3 | import com.violetks.dao.MarkDao;
4 | import com.violetks.entity.Mark;
5 |
6 | public class MarkService {
7 | MarkDao markDao = new MarkDao();
8 |
9 | // 添加评分记录
10 | public boolean addMarkRecord(Mark mark) {
11 | return markDao.addMarkRecord(mark);
12 | }
13 |
14 | // 查询评分记录
15 | public Mark getMark(int sid, int qid) {
16 | return markDao.getMark(sid, qid);
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/src/main/java/com/violetks/service/RecordService.java:
--------------------------------------------------------------------------------
1 | package com.violetks.service;
2 |
3 | import com.violetks.dao.RecordDao;
4 | import com.violetks.entity.Record;
5 |
6 | public class RecordService {
7 |
8 | RecordDao recordDao = new RecordDao();
9 |
10 | // 添加练习记录
11 | public boolean addExciseRecord(Record record) {
12 | return recordDao.addExciseRecord(record);
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/src/main/resources/answer/1/answer101.txt:
--------------------------------------------------------------------------------
1 | *
2 | ***
3 | *****
4 |
--------------------------------------------------------------------------------
/src/main/resources/answer/1/example101.txt:
--------------------------------------------------------------------------------
1 | *
2 | ***
3 | *****
--------------------------------------------------------------------------------
/src/main/resources/answer/10/answer1001.txt:
--------------------------------------------------------------------------------
1 | 18
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/10/answer1002.txt:
--------------------------------------------------------------------------------
1 | 45
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/10/answer1003.txt:
--------------------------------------------------------------------------------
1 | 63
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/10/answer1004.txt:
--------------------------------------------------------------------------------
1 | 108
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/10/answer1005.txt:
--------------------------------------------------------------------------------
1 | 165
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/10/input1001.txt:
--------------------------------------------------------------------------------
1 | 10
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/10/input1002.txt:
--------------------------------------------------------------------------------
1 | 15
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/10/input1003.txt:
--------------------------------------------------------------------------------
1 | 20
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/10/input1004.txt:
--------------------------------------------------------------------------------
1 | 25
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/10/input1005.txt:
--------------------------------------------------------------------------------
1 | 30
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/11/answer1101.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 2 4
3 | 3 6 9
4 |
--------------------------------------------------------------------------------
/src/main/resources/answer/11/answer1102.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 2 4
3 | 3 6 9
4 | 4 8 12 16
5 | 5 10 15 20 25
6 |
--------------------------------------------------------------------------------
/src/main/resources/answer/11/answer1103.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 2 4
3 |
--------------------------------------------------------------------------------
/src/main/resources/answer/11/answer1104.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 2 4
3 | 3 6 9
4 | 4 8 12 16
5 |
--------------------------------------------------------------------------------
/src/main/resources/answer/11/answer1105.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 2 4
3 | 3 6 9
4 | 4 8 12 16
5 | 5 10 15 20 25
6 | 6 12 18 24 30 36
7 |
--------------------------------------------------------------------------------
/src/main/resources/answer/11/input1101.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/11/input1102.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/11/input1103.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/11/input1104.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/11/input1105.txt:
--------------------------------------------------------------------------------
1 | 6
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/12/answer1201.txt:
--------------------------------------------------------------------------------
1 | 4 1
2 | 3 2
3 |
--------------------------------------------------------------------------------
/src/main/resources/answer/12/answer1202.txt:
--------------------------------------------------------------------------------
1 | 7 8 1
2 | 6 9 2
3 | 5 4 3
4 |
--------------------------------------------------------------------------------
/src/main/resources/answer/12/answer1203.txt:
--------------------------------------------------------------------------------
1 | 10 11 12 1
2 | 9 16 13 2
3 | 8 15 14 3
4 | 7 6 5 4
5 |
--------------------------------------------------------------------------------
/src/main/resources/answer/12/answer1204.txt:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/12/answer1205.txt:
--------------------------------------------------------------------------------
1 | 19 20 21 22 23 24 1
2 | 18 37 38 39 40 25 2
3 | 17 36 47 48 41 26 3
4 | 16 35 46 49 42 27 4
5 | 15 34 45 44 43 28 5
6 | 14 33 32 31 30 29 6
7 | 13 12 11 10 9 8 7
8 |
--------------------------------------------------------------------------------
/src/main/resources/answer/12/input1201.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/12/input1202.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/12/input1203.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/12/input1204.txt:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/12/input1205.txt:
--------------------------------------------------------------------------------
1 | 7
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/13/answer1301.txt:
--------------------------------------------------------------------------------
1 | 32
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/13/answer1302.txt:
--------------------------------------------------------------------------------
1 | 55
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/13/answer1303.txt:
--------------------------------------------------------------------------------
1 | 76
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/13/answer1304.txt:
--------------------------------------------------------------------------------
1 | 117
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/13/answer1305.txt:
--------------------------------------------------------------------------------
1 | 314
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/13/input1301.txt:
--------------------------------------------------------------------------------
1 | 1A
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/13/input1302.txt:
--------------------------------------------------------------------------------
1 | 2D
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/13/input1303.txt:
--------------------------------------------------------------------------------
1 | 3E
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/13/input1304.txt:
--------------------------------------------------------------------------------
1 | 4F
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/13/input1305.txt:
--------------------------------------------------------------------------------
1 | CC
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/14/answer1401.txt:
--------------------------------------------------------------------------------
1 | 153
2 | 370
3 | 371
4 | 407
5 |
--------------------------------------------------------------------------------
/src/main/resources/answer/14/example1401.txt:
--------------------------------------------------------------------------------
1 | 153
2 | 371
3 |
--------------------------------------------------------------------------------
/src/main/resources/answer/15/answer1501.txt:
--------------------------------------------------------------------------------
1 | 101
2 | 103
3 | 107
4 | 109
5 | 113
6 | 127
7 | 131
8 | 137
9 | 139
10 | 149
11 |
--------------------------------------------------------------------------------
/src/main/resources/answer/15/example1501.txt:
--------------------------------------------------------------------------------
1 | 101
2 | 103
3 | 107
4 | 149
5 |
--------------------------------------------------------------------------------
/src/main/resources/answer/16/answer1601.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/16/answer1602.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/16/answer1603.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/16/answer1604.txt:
--------------------------------------------------------------------------------
1 | 2000
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/16/answer1605.txt:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/16/input1601.txt:
--------------------------------------------------------------------------------
1 | 1 2
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/16/input1602.txt:
--------------------------------------------------------------------------------
1 | 3 4
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/16/input1603.txt:
--------------------------------------------------------------------------------
1 | 5 2
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/16/input1604.txt:
--------------------------------------------------------------------------------
1 | 1000 2000
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/16/input1605.txt:
--------------------------------------------------------------------------------
1 | 1 0
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/17/answer1701.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/17/answer1702.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/17/answer1703.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/17/answer1704.txt:
--------------------------------------------------------------------------------
1 | 2000
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/17/answer1705.txt:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/17/input1701.txt:
--------------------------------------------------------------------------------
1 | 1 2 3
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/17/input1702.txt:
--------------------------------------------------------------------------------
1 | 3 4 1
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/17/input1703.txt:
--------------------------------------------------------------------------------
1 | 5 2 0
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/17/input1704.txt:
--------------------------------------------------------------------------------
1 | 1000 2000 345
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/17/input1705.txt:
--------------------------------------------------------------------------------
1 | 1 0 0
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/18/answer1801.txt:
--------------------------------------------------------------------------------
1 | 2.7182815255731922
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/18/example1801.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/src/main/resources/answer/18/example1801.txt
--------------------------------------------------------------------------------
/src/main/resources/answer/19/answer1901.txt:
--------------------------------------------------------------------------------
1 | 46
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/19/answer1902.txt:
--------------------------------------------------------------------------------
1 | 71
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/19/answer1903.txt:
--------------------------------------------------------------------------------
1 | 284
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/19/answer1904.txt:
--------------------------------------------------------------------------------
1 | 169
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/19/answer1905.txt:
--------------------------------------------------------------------------------
1 | 124
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/19/input1901.txt:
--------------------------------------------------------------------------------
1 | 2015 2 15
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/19/input1902.txt:
--------------------------------------------------------------------------------
1 | 1998 3 12
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/19/input1903.txt:
--------------------------------------------------------------------------------
1 | 2000 10 10
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/19/input1904.txt:
--------------------------------------------------------------------------------
1 | 1997 6 18
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/19/input1905.txt:
--------------------------------------------------------------------------------
1 | 2018 5 4
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/2/answer201.txt:
--------------------------------------------------------------------------------
1 | even
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/2/answer202.txt:
--------------------------------------------------------------------------------
1 | odd
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/2/answer203.txt:
--------------------------------------------------------------------------------
1 | even
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/2/answer204.txt:
--------------------------------------------------------------------------------
1 | odd
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/2/answer205.txt:
--------------------------------------------------------------------------------
1 | odd
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/2/input201.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/2/input202.txt:
--------------------------------------------------------------------------------
1 | 67
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/2/input203.txt:
--------------------------------------------------------------------------------
1 | 800
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/2/input204.txt:
--------------------------------------------------------------------------------
1 | 777
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/2/input205.txt:
--------------------------------------------------------------------------------
1 | 979
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/20/answer2001.txt:
--------------------------------------------------------------------------------
1 | no
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/20/answer2002.txt:
--------------------------------------------------------------------------------
1 | yes
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/20/answer2003.txt:
--------------------------------------------------------------------------------
1 | no
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/20/answer2004.txt:
--------------------------------------------------------------------------------
1 | yes
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/20/answer2005.txt:
--------------------------------------------------------------------------------
1 | yes
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/20/input2001.txt:
--------------------------------------------------------------------------------
1 | 1900
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/20/input2002.txt:
--------------------------------------------------------------------------------
1 | 2000
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/20/input2003.txt:
--------------------------------------------------------------------------------
1 | 1997
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/20/input2004.txt:
--------------------------------------------------------------------------------
1 | 1996
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/20/input2005.txt:
--------------------------------------------------------------------------------
1 | 2016
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/21/answer2101.txt:
--------------------------------------------------------------------------------
1 | ain
2 | grain
3 | in
4 | n
5 | rain
6 |
--------------------------------------------------------------------------------
/src/main/resources/answer/21/answer2102.txt:
--------------------------------------------------------------------------------
1 | ell
2 | l
3 | ll
4 | well
5 |
--------------------------------------------------------------------------------
/src/main/resources/answer/21/answer2103.txt:
--------------------------------------------------------------------------------
1 | dent
2 | ent
3 | nt
4 | student
5 | t
6 | tudent
7 | udent
8 |
--------------------------------------------------------------------------------
/src/main/resources/answer/21/answer2104.txt:
--------------------------------------------------------------------------------
1 | acher
2 | cher
3 | eacher
4 | er
5 | her
6 | r
7 | teacher
8 |
--------------------------------------------------------------------------------
/src/main/resources/answer/21/answer2105.txt:
--------------------------------------------------------------------------------
1 | boy
2 | oy
3 | y
4 |
--------------------------------------------------------------------------------
/src/main/resources/answer/21/input2101.txt:
--------------------------------------------------------------------------------
1 | grain
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/21/input2102.txt:
--------------------------------------------------------------------------------
1 | well
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/21/input2103.txt:
--------------------------------------------------------------------------------
1 | student
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/21/input2104.txt:
--------------------------------------------------------------------------------
1 | teacher
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/21/input2105.txt:
--------------------------------------------------------------------------------
1 | boy
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/22/answer2201.txt:
--------------------------------------------------------------------------------
1 | A-->B
2 | A-->C
3 | B-->C
4 |
--------------------------------------------------------------------------------
/src/main/resources/answer/22/answer2202.txt:
--------------------------------------------------------------------------------
1 | A-->C
2 | A-->B
3 | C-->B
4 | A-->C
5 | B-->A
6 | B-->C
7 | A-->C
8 |
--------------------------------------------------------------------------------
/src/main/resources/answer/22/answer2203.txt:
--------------------------------------------------------------------------------
1 | A-->B
2 | A-->C
3 | B-->C
4 | A-->B
5 | C-->A
6 | C-->B
7 | A-->B
8 | A-->C
9 | B-->C
10 | B-->A
11 | C-->A
12 | B-->C
13 | A-->B
14 | A-->C
15 | B-->C
16 |
--------------------------------------------------------------------------------
/src/main/resources/answer/22/answer2204.txt:
--------------------------------------------------------------------------------
1 | A-->C
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/22/answer2205.txt:
--------------------------------------------------------------------------------
1 | A-->C
2 | A-->B
3 | C-->B
4 | A-->C
5 | B-->A
6 | B-->C
7 | A-->C
8 | A-->B
9 | C-->B
10 | C-->A
11 | B-->A
12 | C-->B
13 | A-->C
14 | A-->B
15 | C-->B
16 | A-->C
17 | B-->A
18 | B-->C
19 | A-->C
20 | B-->A
21 | C-->B
22 | C-->A
23 | B-->A
24 | B-->C
25 | A-->C
26 | A-->B
27 | C-->B
28 | A-->C
29 | B-->A
30 | B-->C
31 | A-->C
32 |
--------------------------------------------------------------------------------
/src/main/resources/answer/22/input2201.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/22/input2202.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/22/input2203.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/22/input2204.txt:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/22/input2205.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/23/answer2301.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/23/answer2302.txt:
--------------------------------------------------------------------------------
1 | 12586269025
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/23/answer2303.txt:
--------------------------------------------------------------------------------
1 | 832040
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/23/answer2304.txt:
--------------------------------------------------------------------------------
1 | 6765
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/23/answer2305.txt:
--------------------------------------------------------------------------------
1 | 3736710778780434371
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/23/input2301.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/23/input2302.txt:
--------------------------------------------------------------------------------
1 | 50
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/23/input2303.txt:
--------------------------------------------------------------------------------
1 | 30
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/23/input2304.txt:
--------------------------------------------------------------------------------
1 | 20
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/23/input2305.txt:
--------------------------------------------------------------------------------
1 | 100
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/24/answer2401.txt:
--------------------------------------------------------------------------------
1 | 20
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/24/answer2402.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/24/answer2403.txt:
--------------------------------------------------------------------------------
1 | 60
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/24/answer2404.txt:
--------------------------------------------------------------------------------
1 | 30
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/24/answer2405.txt:
--------------------------------------------------------------------------------
1 | 28
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/24/input2401.txt:
--------------------------------------------------------------------------------
1 | 2 4 5
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/24/input2402.txt:
--------------------------------------------------------------------------------
1 | 3 1 1
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/24/input2403.txt:
--------------------------------------------------------------------------------
1 | 3 4 5
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/24/input2404.txt:
--------------------------------------------------------------------------------
1 | 6 5 3
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/24/input2405.txt:
--------------------------------------------------------------------------------
1 | 1 4 7
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/25/answer2501.txt:
--------------------------------------------------------------------------------
1 | 6 5 4 3 2 1
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/25/answer2502.txt:
--------------------------------------------------------------------------------
1 | 4 5 8 7 9 6
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/25/answer2503.txt:
--------------------------------------------------------------------------------
1 | 5 6 7 8 9 0
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/25/answer2504.txt:
--------------------------------------------------------------------------------
1 | 0 9 7 5 3 1
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/25/answer2505.txt:
--------------------------------------------------------------------------------
1 | 12 10 8 6 4 2
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/25/input2501.txt:
--------------------------------------------------------------------------------
1 | 1 2 3 4 5 6
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/25/input2502.txt:
--------------------------------------------------------------------------------
1 | 6 9 7 8 5 4
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/25/input2503.txt:
--------------------------------------------------------------------------------
1 | 0 9 8 7 6 5
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/25/input2504.txt:
--------------------------------------------------------------------------------
1 | 1 3 5 7 9 0
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/25/input2505.txt:
--------------------------------------------------------------------------------
1 | 2 4 6 8 10 12
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/26/answer2601.txt:
--------------------------------------------------------------------------------
1 | 1 2 3 4 5 6
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/26/answer2602.txt:
--------------------------------------------------------------------------------
1 | 4 5 6 7 8 9
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/26/answer2603.txt:
--------------------------------------------------------------------------------
1 | 0 5 6 7 8 9
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/26/answer2604.txt:
--------------------------------------------------------------------------------
1 | 0 1 3 5 7 9
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/26/answer2605.txt:
--------------------------------------------------------------------------------
1 | 2 4 6 8 10 12
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/26/input2601.txt:
--------------------------------------------------------------------------------
1 | 1 6 5 3 4 2
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/26/input2602.txt:
--------------------------------------------------------------------------------
1 | 6 9 7 8 5 4
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/26/input2603.txt:
--------------------------------------------------------------------------------
1 | 0 9 8 7 6 5
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/26/input2604.txt:
--------------------------------------------------------------------------------
1 | 1 3 5 7 9 0
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/26/input2605.txt:
--------------------------------------------------------------------------------
1 | 2 4 6 8 10 12
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/27/answer2701.txt:
--------------------------------------------------------------------------------
1 | 6
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/27/answer2702.txt:
--------------------------------------------------------------------------------
1 | 9
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/27/answer2703.txt:
--------------------------------------------------------------------------------
1 | 9
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/27/answer2704.txt:
--------------------------------------------------------------------------------
1 | 9
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/27/answer2705.txt:
--------------------------------------------------------------------------------
1 | 12
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/27/input2701.txt:
--------------------------------------------------------------------------------
1 | 1 6 5 3 4 2
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/27/input2702.txt:
--------------------------------------------------------------------------------
1 | 6 9 7 8 5 4
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/27/input2703.txt:
--------------------------------------------------------------------------------
1 | 0 9 8 7 6 5
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/27/input2704.txt:
--------------------------------------------------------------------------------
1 | 1 3 5 7 9 0
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/27/input2705.txt:
--------------------------------------------------------------------------------
1 | 2 4 6 8 10 12
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/28/answer2801.txt:
--------------------------------------------------------------------------------
1 | in
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/28/answer2802.txt:
--------------------------------------------------------------------------------
1 | not in
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/28/answer2803.txt:
--------------------------------------------------------------------------------
1 | not in
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/28/answer2804.txt:
--------------------------------------------------------------------------------
1 | in
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/28/answer2805.txt:
--------------------------------------------------------------------------------
1 | in
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/28/input2801.txt:
--------------------------------------------------------------------------------
1 | 10
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/28/input2802.txt:
--------------------------------------------------------------------------------
1 | 7
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/28/input2803.txt:
--------------------------------------------------------------------------------
1 | 9
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/28/input2804.txt:
--------------------------------------------------------------------------------
1 | 70
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/28/input2805.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/29/answer2901.txt:
--------------------------------------------------------------------------------
1 | 9.60
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/29/answer2902.txt:
--------------------------------------------------------------------------------
1 | 9.33
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/29/answer2903.txt:
--------------------------------------------------------------------------------
1 | 10.67
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/29/answer2904.txt:
--------------------------------------------------------------------------------
1 | 3.00
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/29/answer2905.txt:
--------------------------------------------------------------------------------
1 | 8.90
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/29/input2901.txt:
--------------------------------------------------------------------------------
1 | 9.5 9.8 9.7 9.4 9.6
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/29/input2902.txt:
--------------------------------------------------------------------------------
1 | 10 9 8 12 9
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/29/input2903.txt:
--------------------------------------------------------------------------------
1 | 11 10 8 12 11
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/29/input2904.txt:
--------------------------------------------------------------------------------
1 | 1 2 3 4 5
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/29/input2905.txt:
--------------------------------------------------------------------------------
1 | 8.7 9.0 9.0 8.8 8.9
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/3/answer301.txt:
--------------------------------------------------------------------------------
1 | 10
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/3/answer302.txt:
--------------------------------------------------------------------------------
1 | 11
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/3/answer303.txt:
--------------------------------------------------------------------------------
1 | 24
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/3/answer304.txt:
--------------------------------------------------------------------------------
1 | 26
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/3/answer305.txt:
--------------------------------------------------------------------------------
1 | 24
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/3/input301.txt:
--------------------------------------------------------------------------------
1 | 1234
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/3/input302.txt:
--------------------------------------------------------------------------------
1 | 3008
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/3/input303.txt:
--------------------------------------------------------------------------------
1 | 6666
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/3/input304.txt:
--------------------------------------------------------------------------------
1 | 6578
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/3/input305.txt:
--------------------------------------------------------------------------------
1 | 9087
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/30/answer3001.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 1 1
3 | 1 2 1
4 |
--------------------------------------------------------------------------------
/src/main/resources/answer/30/answer3002.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 1 1
3 | 1 2 1
4 | 1 3 3 1
5 | 1 4 6 4 1
6 |
--------------------------------------------------------------------------------
/src/main/resources/answer/30/answer3003.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 1 1
3 | 1 2 1
4 | 1 3 3 1
5 |
--------------------------------------------------------------------------------
/src/main/resources/answer/30/answer3004.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 1 1
3 | 1 2 1
4 | 1 3 3 1
5 | 1 4 6 4 1
6 | 1 5 10 10 5 1
7 |
--------------------------------------------------------------------------------
/src/main/resources/answer/30/answer3005.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 1 1
3 | 1 2 1
4 | 1 3 3 1
5 | 1 4 6 4 1
6 | 1 5 10 10 5 1
7 | 1 6 15 20 15 6 1
8 |
--------------------------------------------------------------------------------
/src/main/resources/answer/30/input3001.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/30/input3002.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/30/input3003.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/30/input3004.txt:
--------------------------------------------------------------------------------
1 | 6
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/30/input3005.txt:
--------------------------------------------------------------------------------
1 | 7
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/36/answer3601.txt:
--------------------------------------------------------------------------------
1 | a
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/36/answer3602.txt:
--------------------------------------------------------------------------------
1 | s
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/36/input3601.txt:
--------------------------------------------------------------------------------
1 | a
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/36/input3602.txt:
--------------------------------------------------------------------------------
1 | s
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/4/answer401.txt:
--------------------------------------------------------------------------------
1 | 120
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/4/answer402.txt:
--------------------------------------------------------------------------------
1 | 720
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/4/answer403.txt:
--------------------------------------------------------------------------------
1 | 5040
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/4/answer404.txt:
--------------------------------------------------------------------------------
1 | 362880
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/4/answer405.txt:
--------------------------------------------------------------------------------
1 | 40320
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/4/input401.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/4/input402.txt:
--------------------------------------------------------------------------------
1 | 6
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/4/input403.txt:
--------------------------------------------------------------------------------
1 | 7
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/4/input404.txt:
--------------------------------------------------------------------------------
1 | 9
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/4/input405.txt:
--------------------------------------------------------------------------------
1 | 8
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/5/answer501.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/5/answer502.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/5/answer503.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/5/answer504.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/5/answer505.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/5/input501.txt:
--------------------------------------------------------------------------------
1 | abc123
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/5/input502.txt:
--------------------------------------------------------------------------------
1 | 78ab659
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/5/input503.txt:
--------------------------------------------------------------------------------
1 | AB867fgh
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/5/input504.txt:
--------------------------------------------------------------------------------
1 | a2b3c4d5
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/5/input505.txt:
--------------------------------------------------------------------------------
1 | we45600l
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/6/answer601.txt:
--------------------------------------------------------------------------------
1 | 2500
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/7/answer701.txt:
--------------------------------------------------------------------------------
1 | 2 12
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/7/answer702.txt:
--------------------------------------------------------------------------------
1 | 8 360
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/7/answer703.txt:
--------------------------------------------------------------------------------
1 | 4 48
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/7/answer704.txt:
--------------------------------------------------------------------------------
1 | 25 150
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/7/answer705.txt:
--------------------------------------------------------------------------------
1 | 1 6
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/7/input701.txt:
--------------------------------------------------------------------------------
1 | 4 6
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/7/input702.txt:
--------------------------------------------------------------------------------
1 | 72 40
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/7/input703.txt:
--------------------------------------------------------------------------------
1 | 16 12
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/7/input704.txt:
--------------------------------------------------------------------------------
1 | 50 75
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/7/input705.txt:
--------------------------------------------------------------------------------
1 | 2 3
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/8/answer801.txt:
--------------------------------------------------------------------------------
1 | 192 384 576
2 | 219 438 657
3 | 273 546 819
4 | 327 654 981
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/main/resources/answer/8/example801.txt:
--------------------------------------------------------------------------------
1 | 192 384 576
2 | 219 438 657
--------------------------------------------------------------------------------
/src/main/resources/answer/9/answer901.txt:
--------------------------------------------------------------------------------
1 | 54321
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/9/answer902.txt:
--------------------------------------------------------------------------------
1 | 9876
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/9/answer903.txt:
--------------------------------------------------------------------------------
1 | 4321
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/9/answer904.txt:
--------------------------------------------------------------------------------
1 | 8501
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/9/answer905.txt:
--------------------------------------------------------------------------------
1 | 1111
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/9/input901.txt:
--------------------------------------------------------------------------------
1 | 12345
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/9/input902.txt:
--------------------------------------------------------------------------------
1 | 6789
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/9/input903.txt:
--------------------------------------------------------------------------------
1 | 1234
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/9/input904.txt:
--------------------------------------------------------------------------------
1 | 1058
2 |
--------------------------------------------------------------------------------
/src/main/resources/answer/9/input905.txt:
--------------------------------------------------------------------------------
1 | 1111
2 |
--------------------------------------------------------------------------------
/src/main/resources/codeStr/2016206929/1.txt:
--------------------------------------------------------------------------------
1 | public class Main {
2 | public static void main(String[] args){
3 | System.out.println("*");
4 | System.out.println("***");
5 | }
6 | }
--------------------------------------------------------------------------------
/src/main/resources/codeStr/2016206929/4.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/src/main/resources/codeStr/2016206929/4.txt
--------------------------------------------------------------------------------
/src/main/resources/output/2016206929/101.txt:
--------------------------------------------------------------------------------
1 | *
2 | ***
3 |
--------------------------------------------------------------------------------
/src/main/resources/output/2016206929/401.txt:
--------------------------------------------------------------------------------
1 | 120
--------------------------------------------------------------------------------
/src/main/resources/output/2016206929/402.txt:
--------------------------------------------------------------------------------
1 | 720
--------------------------------------------------------------------------------
/src/main/resources/output/2016206929/403.txt:
--------------------------------------------------------------------------------
1 | 5040
--------------------------------------------------------------------------------
/src/main/resources/output/2016206929/404.txt:
--------------------------------------------------------------------------------
1 | 362880
--------------------------------------------------------------------------------
/src/main/resources/output/2016206929/405.txt:
--------------------------------------------------------------------------------
1 | 1
--------------------------------------------------------------------------------
/src/main/test/TestDeleteQuestion.java:
--------------------------------------------------------------------------------
1 | import com.violetks.dao.QuestionDao;
2 |
3 | /**
4 | * 测试删除题目
5 | */
6 | public class TestDeleteQuestion {
7 | public TestDeleteQuestion() {
8 | }
9 |
10 | public static void main(String[] args) {
11 | QuestionDao dao = new QuestionDao();
12 | boolean res = dao.deleteQuestion(31);
13 | if (res) {
14 | System.out.print("删除成功");
15 | } else {
16 | System.out.print("删除失败");
17 | }
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/src/main/test/TestDirectoryLength.java:
--------------------------------------------------------------------------------
1 | import java.io.File;
2 |
3 | public class TestDirectoryLength {
4 | public TestDirectoryLength() {
5 | }
6 |
7 | public static void main(String[] args) {
8 | File f1 = new File("d://TestScanner/test1");
9 | File[] files1 = f1.listFiles();
10 | System.out.println(files1.length);
11 | File f2 = new File("d://TestScanner/test2");
12 | File[] files2 = f2.listFiles();
13 | System.out.println(files2.length);
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/src/main/test/TestFileCompare.java:
--------------------------------------------------------------------------------
1 | import com.violetks.complierun.JavaCompileRun;
2 |
3 | /**
4 | * 测试比较两个文件
5 | */
6 | public class TestFileCompare {
7 | public TestFileCompare() {
8 | }
9 |
10 | public static void main(String[] args) {
11 | String sourceCode = "hello thank you";
12 | JavaCompileRun jcr = new JavaCompileRun(sourceCode);
13 | System.out.println(jcr.fileCompare("D:/qq/compileRun/answer/1/input101.txt",
14 | "D:/qq/compileRun/answer/1/answer101.txt"));
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/src/main/test/TestFileInput.java:
--------------------------------------------------------------------------------
1 | import com.violetks.fileUtil.FileInput;
2 |
3 | /**
4 | * 测试FileInput
5 | */
6 | public class TestFileInput {
7 | public TestFileInput() {
8 | }
9 |
10 | public static void main(String[] args) {
11 | FileInput fi = new FileInput();
12 | fi.createDir(1);
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/src/main/test/TestFileOutput.java:
--------------------------------------------------------------------------------
1 | import com.violetks.fileUtil.FileOutput;
2 |
3 | /**
4 | * 测试读取文件内容
5 | */
6 | public class TestFileOutput {
7 | public TestFileOutput() {
8 | }
9 |
10 | public static void main(String[] args) {
11 | FileOutput fo = new FileOutput();
12 | System.out.println(fo.readFile("1", "input", 1));
13 | System.out.println(fo.readFile("1", "input", 2));
14 | System.out.println(fo.readFile("1", "answer", 1));
15 | System.out.println(fo.readFile("1", "answer", 2));
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/src/main/test/TestScanner.java:
--------------------------------------------------------------------------------
1 | import java.util.Scanner;
2 |
3 | public class TestScanner {
4 | public static int doFactorial(int n) {
5 | int result = 1;
6 | if (n < 0) {
7 | return -1;//返回-1,说明传入数据不合法
8 | }
9 | if (n == 0) {
10 | return 1;
11 | }
12 | for (int i = 1; i <= n; i++) {
13 | result *= i;
14 | }
15 | return result;
16 | }
17 |
18 | public static void main(String[] args) {
19 | Scanner sc = new Scanner(System.in);
20 | int res = doFactorial(sc.nextInt());
21 | System.out.print(res);
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/src/main/test/TestSms.java:
--------------------------------------------------------------------------------
1 | import static com.violetks.smsUtil.PhoneCode.getPhonemsg;
2 |
3 | /**
4 | * 测试发送验证码
5 | */
6 | public class TestSms {
7 | public static void main(String[] args) {
8 | String phone = "15685361474"; //此处可输入你的手机号码进行测试
9 | String result = getPhonemsg(phone);
10 | System.out.println("生成的验证码:"+result);
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/src/main/webapp/css/exerciseSet.css:
--------------------------------------------------------------------------------
1 | /*********** 选中练习记录 **********/
2 | #nav li:nth-child(3) {
3 | color: white;
4 | background-color: #3c4c5f;
5 | border-bottom: 3px solid #e45600;
6 | }
7 |
8 |
9 | /*********** 表格区域 **********/
10 | #topTable{
11 | margin-top: 60px;
12 | }
13 | table td{
14 | height: 25px;
15 | }
16 | #topTable a{
17 | text-decoration: none;
18 | }
19 | form{
20 | margin: 8px auto;
21 | }
22 | /*********** 分页区域 **********/
23 | #changePages{
24 | margin: 25px auto;
25 | font-family: 宋体;
26 | }
27 | #changePages a{
28 | text-decoration: none;
29 | }
--------------------------------------------------------------------------------
/src/main/webapp/css/questionInput.css:
--------------------------------------------------------------------------------
1 | /*********** 选择上传试题类型 **********/
2 | #q_type ul {
3 | list-style: none;
4 | margin-top: 20px;
5 | }
6 |
7 | #q_type ul li {
8 | float: left;
9 | cursor: pointer;
10 | padding: 7px;
11 | margin-right: 3px;
12 | border: 1px solid #e45600;
13 | font-size: 13px;
14 | }
15 |
16 | .selected {
17 | color: white;
18 | border: 1px solid #e45600;
19 | background-color: #e45600;
20 | }
21 |
22 | /*********** 可变iframe **********/
23 | #changeContent{
24 | margin-top: 20px;
25 | margin-left: 30px;
26 | }
--------------------------------------------------------------------------------
/src/main/webapp/css/rankList.css:
--------------------------------------------------------------------------------
1 | /*********** 选中排行榜 **********/
2 | #nav li:nth-child(4) {
3 | color: white;
4 | background-color: #3c4c5f;
5 | border-bottom: 3px solid #e45600;
6 | }
7 |
8 |
9 | /*********** 表格区域 **********/
10 | #topTable{
11 | margin-top: 60px;
12 | }
13 | table td{
14 | height: 25px;
15 | }
16 | #topTable a{
17 | text-decoration: none;
18 | }
19 | form{
20 | margin: 8px auto;
21 | }
22 | /*********** 分页区域 **********/
23 | #changePages{
24 | margin: 25px auto;
25 | font-family: 宋体;
26 | }
27 | #changePages a{
28 | text-decoration: none;
29 | }
--------------------------------------------------------------------------------
/src/main/webapp/css/resetPwd.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/src/main/webapp/css/resetPwd.css
--------------------------------------------------------------------------------
/src/main/webapp/logout.jsp:
--------------------------------------------------------------------------------
1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
2 |
3 |
4 |
5 | 退出登录
6 |
7 |
8 | <% session.invalidate(); %>
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/main/webapp/resetPwd.jsp:
--------------------------------------------------------------------------------
1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
2 |
3 |
4 |
5 |
6 | 重置密码
7 |
8 |
9 | 重置密码页
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/main/webapp/teacher/studentRank.jsp:
--------------------------------------------------------------------------------
1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
2 |
3 |
4 |
5 | 学生成绩排行
6 |
7 |
8 | 学生成绩排行
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/main/webapp/teacher/teacherAdmin.jsp:
--------------------------------------------------------------------------------
1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
2 |
3 |
4 |
5 | 个人中心
6 |
7 |
8 | 个人中心
9 |
10 |
11 |
--------------------------------------------------------------------------------
/target/classes/META-INF/practice_system.kotlin_module:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/target/classes/answer/1/answer101.txt:
--------------------------------------------------------------------------------
1 | *
2 | ***
3 | *****
4 |
--------------------------------------------------------------------------------
/target/classes/answer/1/example101.txt:
--------------------------------------------------------------------------------
1 | *
2 | ***
3 | *****
--------------------------------------------------------------------------------
/target/classes/answer/10/answer1001.txt:
--------------------------------------------------------------------------------
1 | 18
2 |
--------------------------------------------------------------------------------
/target/classes/answer/10/answer1002.txt:
--------------------------------------------------------------------------------
1 | 45
2 |
--------------------------------------------------------------------------------
/target/classes/answer/10/answer1003.txt:
--------------------------------------------------------------------------------
1 | 63
2 |
--------------------------------------------------------------------------------
/target/classes/answer/10/answer1004.txt:
--------------------------------------------------------------------------------
1 | 108
2 |
--------------------------------------------------------------------------------
/target/classes/answer/10/answer1005.txt:
--------------------------------------------------------------------------------
1 | 165
2 |
--------------------------------------------------------------------------------
/target/classes/answer/10/input1001.txt:
--------------------------------------------------------------------------------
1 | 10
2 |
--------------------------------------------------------------------------------
/target/classes/answer/10/input1002.txt:
--------------------------------------------------------------------------------
1 | 15
2 |
--------------------------------------------------------------------------------
/target/classes/answer/10/input1003.txt:
--------------------------------------------------------------------------------
1 | 20
2 |
--------------------------------------------------------------------------------
/target/classes/answer/10/input1004.txt:
--------------------------------------------------------------------------------
1 | 25
2 |
--------------------------------------------------------------------------------
/target/classes/answer/10/input1005.txt:
--------------------------------------------------------------------------------
1 | 30
2 |
--------------------------------------------------------------------------------
/target/classes/answer/11/answer1101.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 2 4
3 | 3 6 9
4 |
--------------------------------------------------------------------------------
/target/classes/answer/11/answer1102.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 2 4
3 | 3 6 9
4 | 4 8 12 16
5 | 5 10 15 20 25
6 |
--------------------------------------------------------------------------------
/target/classes/answer/11/answer1103.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 2 4
3 |
--------------------------------------------------------------------------------
/target/classes/answer/11/answer1104.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 2 4
3 | 3 6 9
4 | 4 8 12 16
5 |
--------------------------------------------------------------------------------
/target/classes/answer/11/answer1105.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 2 4
3 | 3 6 9
4 | 4 8 12 16
5 | 5 10 15 20 25
6 | 6 12 18 24 30 36
7 |
--------------------------------------------------------------------------------
/target/classes/answer/11/input1101.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/classes/answer/11/input1102.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/target/classes/answer/11/input1103.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/target/classes/answer/11/input1104.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/target/classes/answer/11/input1105.txt:
--------------------------------------------------------------------------------
1 | 6
2 |
--------------------------------------------------------------------------------
/target/classes/answer/12/answer1201.txt:
--------------------------------------------------------------------------------
1 | 4 1
2 | 3 2
3 |
--------------------------------------------------------------------------------
/target/classes/answer/12/answer1202.txt:
--------------------------------------------------------------------------------
1 | 7 8 1
2 | 6 9 2
3 | 5 4 3
4 |
--------------------------------------------------------------------------------
/target/classes/answer/12/answer1203.txt:
--------------------------------------------------------------------------------
1 | 10 11 12 1
2 | 9 16 13 2
3 | 8 15 14 3
4 | 7 6 5 4
5 |
--------------------------------------------------------------------------------
/target/classes/answer/12/answer1204.txt:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/target/classes/answer/12/answer1205.txt:
--------------------------------------------------------------------------------
1 | 19 20 21 22 23 24 1
2 | 18 37 38 39 40 25 2
3 | 17 36 47 48 41 26 3
4 | 16 35 46 49 42 27 4
5 | 15 34 45 44 43 28 5
6 | 14 33 32 31 30 29 6
7 | 13 12 11 10 9 8 7
8 |
--------------------------------------------------------------------------------
/target/classes/answer/12/input1201.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/target/classes/answer/12/input1202.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/classes/answer/12/input1203.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/target/classes/answer/12/input1204.txt:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/target/classes/answer/12/input1205.txt:
--------------------------------------------------------------------------------
1 | 7
2 |
--------------------------------------------------------------------------------
/target/classes/answer/13/answer1301.txt:
--------------------------------------------------------------------------------
1 | 32
2 |
--------------------------------------------------------------------------------
/target/classes/answer/13/answer1302.txt:
--------------------------------------------------------------------------------
1 | 55
2 |
--------------------------------------------------------------------------------
/target/classes/answer/13/answer1303.txt:
--------------------------------------------------------------------------------
1 | 76
2 |
--------------------------------------------------------------------------------
/target/classes/answer/13/answer1304.txt:
--------------------------------------------------------------------------------
1 | 117
2 |
--------------------------------------------------------------------------------
/target/classes/answer/13/answer1305.txt:
--------------------------------------------------------------------------------
1 | 314
2 |
--------------------------------------------------------------------------------
/target/classes/answer/13/input1301.txt:
--------------------------------------------------------------------------------
1 | 1A
2 |
--------------------------------------------------------------------------------
/target/classes/answer/13/input1302.txt:
--------------------------------------------------------------------------------
1 | 2D
2 |
--------------------------------------------------------------------------------
/target/classes/answer/13/input1303.txt:
--------------------------------------------------------------------------------
1 | 3E
2 |
--------------------------------------------------------------------------------
/target/classes/answer/13/input1304.txt:
--------------------------------------------------------------------------------
1 | 4F
2 |
--------------------------------------------------------------------------------
/target/classes/answer/13/input1305.txt:
--------------------------------------------------------------------------------
1 | CC
2 |
--------------------------------------------------------------------------------
/target/classes/answer/14/answer1401.txt:
--------------------------------------------------------------------------------
1 | 153
2 | 370
3 | 371
4 | 407
5 |
--------------------------------------------------------------------------------
/target/classes/answer/14/example1401.txt:
--------------------------------------------------------------------------------
1 | 153
2 | 371
3 |
--------------------------------------------------------------------------------
/target/classes/answer/15/answer1501.txt:
--------------------------------------------------------------------------------
1 | 101
2 | 103
3 | 107
4 | 109
5 | 113
6 | 127
7 | 131
8 | 137
9 | 139
10 | 149
11 |
--------------------------------------------------------------------------------
/target/classes/answer/15/example1501.txt:
--------------------------------------------------------------------------------
1 | 101
2 | 103
3 | 107
4 | 149
5 |
--------------------------------------------------------------------------------
/target/classes/answer/16/answer1601.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/target/classes/answer/16/answer1602.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/target/classes/answer/16/answer1603.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/target/classes/answer/16/answer1604.txt:
--------------------------------------------------------------------------------
1 | 2000
2 |
--------------------------------------------------------------------------------
/target/classes/answer/16/answer1605.txt:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/target/classes/answer/16/input1601.txt:
--------------------------------------------------------------------------------
1 | 1 2
2 |
--------------------------------------------------------------------------------
/target/classes/answer/16/input1602.txt:
--------------------------------------------------------------------------------
1 | 3 4
2 |
--------------------------------------------------------------------------------
/target/classes/answer/16/input1603.txt:
--------------------------------------------------------------------------------
1 | 5 2
2 |
--------------------------------------------------------------------------------
/target/classes/answer/16/input1604.txt:
--------------------------------------------------------------------------------
1 | 1000 2000
2 |
--------------------------------------------------------------------------------
/target/classes/answer/16/input1605.txt:
--------------------------------------------------------------------------------
1 | 1 0
2 |
--------------------------------------------------------------------------------
/target/classes/answer/17/answer1701.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/classes/answer/17/answer1702.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/target/classes/answer/17/answer1703.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/target/classes/answer/17/answer1704.txt:
--------------------------------------------------------------------------------
1 | 2000
2 |
--------------------------------------------------------------------------------
/target/classes/answer/17/answer1705.txt:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/target/classes/answer/17/input1701.txt:
--------------------------------------------------------------------------------
1 | 1 2 3
2 |
--------------------------------------------------------------------------------
/target/classes/answer/17/input1702.txt:
--------------------------------------------------------------------------------
1 | 3 4 1
2 |
--------------------------------------------------------------------------------
/target/classes/answer/17/input1703.txt:
--------------------------------------------------------------------------------
1 | 5 2 0
2 |
--------------------------------------------------------------------------------
/target/classes/answer/17/input1704.txt:
--------------------------------------------------------------------------------
1 | 1000 2000 345
2 |
--------------------------------------------------------------------------------
/target/classes/answer/17/input1705.txt:
--------------------------------------------------------------------------------
1 | 1 0 0
2 |
--------------------------------------------------------------------------------
/target/classes/answer/18/answer1801.txt:
--------------------------------------------------------------------------------
1 | 2.7182815255731922
2 |
--------------------------------------------------------------------------------
/target/classes/answer/18/example1801.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/answer/18/example1801.txt
--------------------------------------------------------------------------------
/target/classes/answer/19/answer1901.txt:
--------------------------------------------------------------------------------
1 | 46
2 |
--------------------------------------------------------------------------------
/target/classes/answer/19/answer1902.txt:
--------------------------------------------------------------------------------
1 | 71
2 |
--------------------------------------------------------------------------------
/target/classes/answer/19/answer1903.txt:
--------------------------------------------------------------------------------
1 | 284
2 |
--------------------------------------------------------------------------------
/target/classes/answer/19/answer1904.txt:
--------------------------------------------------------------------------------
1 | 169
2 |
--------------------------------------------------------------------------------
/target/classes/answer/19/answer1905.txt:
--------------------------------------------------------------------------------
1 | 124
2 |
--------------------------------------------------------------------------------
/target/classes/answer/19/input1901.txt:
--------------------------------------------------------------------------------
1 | 2015 2 15
2 |
--------------------------------------------------------------------------------
/target/classes/answer/19/input1902.txt:
--------------------------------------------------------------------------------
1 | 1998 3 12
2 |
--------------------------------------------------------------------------------
/target/classes/answer/19/input1903.txt:
--------------------------------------------------------------------------------
1 | 2000 10 10
2 |
--------------------------------------------------------------------------------
/target/classes/answer/19/input1904.txt:
--------------------------------------------------------------------------------
1 | 1997 6 18
2 |
--------------------------------------------------------------------------------
/target/classes/answer/19/input1905.txt:
--------------------------------------------------------------------------------
1 | 2018 5 4
2 |
--------------------------------------------------------------------------------
/target/classes/answer/2/answer201.txt:
--------------------------------------------------------------------------------
1 | even
2 |
--------------------------------------------------------------------------------
/target/classes/answer/2/answer202.txt:
--------------------------------------------------------------------------------
1 | odd
2 |
--------------------------------------------------------------------------------
/target/classes/answer/2/answer203.txt:
--------------------------------------------------------------------------------
1 | even
2 |
--------------------------------------------------------------------------------
/target/classes/answer/2/answer204.txt:
--------------------------------------------------------------------------------
1 | odd
2 |
--------------------------------------------------------------------------------
/target/classes/answer/2/answer205.txt:
--------------------------------------------------------------------------------
1 | odd
2 |
--------------------------------------------------------------------------------
/target/classes/answer/2/input201.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/target/classes/answer/2/input202.txt:
--------------------------------------------------------------------------------
1 | 67
2 |
--------------------------------------------------------------------------------
/target/classes/answer/2/input203.txt:
--------------------------------------------------------------------------------
1 | 800
2 |
--------------------------------------------------------------------------------
/target/classes/answer/2/input204.txt:
--------------------------------------------------------------------------------
1 | 777
2 |
--------------------------------------------------------------------------------
/target/classes/answer/2/input205.txt:
--------------------------------------------------------------------------------
1 | 979
2 |
--------------------------------------------------------------------------------
/target/classes/answer/20/answer2001.txt:
--------------------------------------------------------------------------------
1 | no
2 |
--------------------------------------------------------------------------------
/target/classes/answer/20/answer2002.txt:
--------------------------------------------------------------------------------
1 | yes
2 |
--------------------------------------------------------------------------------
/target/classes/answer/20/answer2003.txt:
--------------------------------------------------------------------------------
1 | no
2 |
--------------------------------------------------------------------------------
/target/classes/answer/20/answer2004.txt:
--------------------------------------------------------------------------------
1 | yes
2 |
--------------------------------------------------------------------------------
/target/classes/answer/20/answer2005.txt:
--------------------------------------------------------------------------------
1 | yes
2 |
--------------------------------------------------------------------------------
/target/classes/answer/20/input2001.txt:
--------------------------------------------------------------------------------
1 | 1900
2 |
--------------------------------------------------------------------------------
/target/classes/answer/20/input2002.txt:
--------------------------------------------------------------------------------
1 | 2000
2 |
--------------------------------------------------------------------------------
/target/classes/answer/20/input2003.txt:
--------------------------------------------------------------------------------
1 | 1997
2 |
--------------------------------------------------------------------------------
/target/classes/answer/20/input2004.txt:
--------------------------------------------------------------------------------
1 | 1996
2 |
--------------------------------------------------------------------------------
/target/classes/answer/20/input2005.txt:
--------------------------------------------------------------------------------
1 | 2016
2 |
--------------------------------------------------------------------------------
/target/classes/answer/21/answer2101.txt:
--------------------------------------------------------------------------------
1 | ain
2 | grain
3 | in
4 | n
5 | rain
6 |
--------------------------------------------------------------------------------
/target/classes/answer/21/answer2102.txt:
--------------------------------------------------------------------------------
1 | ell
2 | l
3 | ll
4 | well
5 |
--------------------------------------------------------------------------------
/target/classes/answer/21/answer2103.txt:
--------------------------------------------------------------------------------
1 | dent
2 | ent
3 | nt
4 | student
5 | t
6 | tudent
7 | udent
8 |
--------------------------------------------------------------------------------
/target/classes/answer/21/answer2104.txt:
--------------------------------------------------------------------------------
1 | acher
2 | cher
3 | eacher
4 | er
5 | her
6 | r
7 | teacher
8 |
--------------------------------------------------------------------------------
/target/classes/answer/21/answer2105.txt:
--------------------------------------------------------------------------------
1 | boy
2 | oy
3 | y
4 |
--------------------------------------------------------------------------------
/target/classes/answer/21/input2101.txt:
--------------------------------------------------------------------------------
1 | grain
2 |
--------------------------------------------------------------------------------
/target/classes/answer/21/input2102.txt:
--------------------------------------------------------------------------------
1 | well
2 |
--------------------------------------------------------------------------------
/target/classes/answer/21/input2103.txt:
--------------------------------------------------------------------------------
1 | student
2 |
--------------------------------------------------------------------------------
/target/classes/answer/21/input2104.txt:
--------------------------------------------------------------------------------
1 | teacher
2 |
--------------------------------------------------------------------------------
/target/classes/answer/21/input2105.txt:
--------------------------------------------------------------------------------
1 | boy
2 |
--------------------------------------------------------------------------------
/target/classes/answer/22/answer2201.txt:
--------------------------------------------------------------------------------
1 | A-->B
2 | A-->C
3 | B-->C
4 |
--------------------------------------------------------------------------------
/target/classes/answer/22/answer2202.txt:
--------------------------------------------------------------------------------
1 | A-->C
2 | A-->B
3 | C-->B
4 | A-->C
5 | B-->A
6 | B-->C
7 | A-->C
8 |
--------------------------------------------------------------------------------
/target/classes/answer/22/answer2203.txt:
--------------------------------------------------------------------------------
1 | A-->B
2 | A-->C
3 | B-->C
4 | A-->B
5 | C-->A
6 | C-->B
7 | A-->B
8 | A-->C
9 | B-->C
10 | B-->A
11 | C-->A
12 | B-->C
13 | A-->B
14 | A-->C
15 | B-->C
16 |
--------------------------------------------------------------------------------
/target/classes/answer/22/answer2204.txt:
--------------------------------------------------------------------------------
1 | A-->C
2 |
--------------------------------------------------------------------------------
/target/classes/answer/22/answer2205.txt:
--------------------------------------------------------------------------------
1 | A-->C
2 | A-->B
3 | C-->B
4 | A-->C
5 | B-->A
6 | B-->C
7 | A-->C
8 | A-->B
9 | C-->B
10 | C-->A
11 | B-->A
12 | C-->B
13 | A-->C
14 | A-->B
15 | C-->B
16 | A-->C
17 | B-->A
18 | B-->C
19 | A-->C
20 | B-->A
21 | C-->B
22 | C-->A
23 | B-->A
24 | B-->C
25 | A-->C
26 | A-->B
27 | C-->B
28 | A-->C
29 | B-->A
30 | B-->C
31 | A-->C
32 |
--------------------------------------------------------------------------------
/target/classes/answer/22/input2201.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/target/classes/answer/22/input2202.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/classes/answer/22/input2203.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/target/classes/answer/22/input2204.txt:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/target/classes/answer/22/input2205.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/target/classes/answer/23/answer2301.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/target/classes/answer/23/answer2302.txt:
--------------------------------------------------------------------------------
1 | 12586269025
2 |
--------------------------------------------------------------------------------
/target/classes/answer/23/answer2303.txt:
--------------------------------------------------------------------------------
1 | 832040
2 |
--------------------------------------------------------------------------------
/target/classes/answer/23/answer2304.txt:
--------------------------------------------------------------------------------
1 | 6765
2 |
--------------------------------------------------------------------------------
/target/classes/answer/23/answer2305.txt:
--------------------------------------------------------------------------------
1 | 3736710778780434371
2 |
--------------------------------------------------------------------------------
/target/classes/answer/23/input2301.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/classes/answer/23/input2302.txt:
--------------------------------------------------------------------------------
1 | 50
2 |
--------------------------------------------------------------------------------
/target/classes/answer/23/input2303.txt:
--------------------------------------------------------------------------------
1 | 30
2 |
--------------------------------------------------------------------------------
/target/classes/answer/23/input2304.txt:
--------------------------------------------------------------------------------
1 | 20
2 |
--------------------------------------------------------------------------------
/target/classes/answer/23/input2305.txt:
--------------------------------------------------------------------------------
1 | 100
2 |
--------------------------------------------------------------------------------
/target/classes/answer/24/answer2401.txt:
--------------------------------------------------------------------------------
1 | 20
2 |
--------------------------------------------------------------------------------
/target/classes/answer/24/answer2402.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/classes/answer/24/answer2403.txt:
--------------------------------------------------------------------------------
1 | 60
2 |
--------------------------------------------------------------------------------
/target/classes/answer/24/answer2404.txt:
--------------------------------------------------------------------------------
1 | 30
2 |
--------------------------------------------------------------------------------
/target/classes/answer/24/answer2405.txt:
--------------------------------------------------------------------------------
1 | 28
2 |
--------------------------------------------------------------------------------
/target/classes/answer/24/input2401.txt:
--------------------------------------------------------------------------------
1 | 2 4 5
2 |
--------------------------------------------------------------------------------
/target/classes/answer/24/input2402.txt:
--------------------------------------------------------------------------------
1 | 3 1 1
2 |
--------------------------------------------------------------------------------
/target/classes/answer/24/input2403.txt:
--------------------------------------------------------------------------------
1 | 3 4 5
2 |
--------------------------------------------------------------------------------
/target/classes/answer/24/input2404.txt:
--------------------------------------------------------------------------------
1 | 6 5 3
2 |
--------------------------------------------------------------------------------
/target/classes/answer/24/input2405.txt:
--------------------------------------------------------------------------------
1 | 1 4 7
2 |
--------------------------------------------------------------------------------
/target/classes/answer/25/answer2501.txt:
--------------------------------------------------------------------------------
1 | 6 5 4 3 2 1
2 |
--------------------------------------------------------------------------------
/target/classes/answer/25/answer2502.txt:
--------------------------------------------------------------------------------
1 | 4 5 8 7 9 6
2 |
--------------------------------------------------------------------------------
/target/classes/answer/25/answer2503.txt:
--------------------------------------------------------------------------------
1 | 5 6 7 8 9 0
2 |
--------------------------------------------------------------------------------
/target/classes/answer/25/answer2504.txt:
--------------------------------------------------------------------------------
1 | 0 9 7 5 3 1
2 |
--------------------------------------------------------------------------------
/target/classes/answer/25/answer2505.txt:
--------------------------------------------------------------------------------
1 | 12 10 8 6 4 2
2 |
--------------------------------------------------------------------------------
/target/classes/answer/25/input2501.txt:
--------------------------------------------------------------------------------
1 | 1 2 3 4 5 6
2 |
--------------------------------------------------------------------------------
/target/classes/answer/25/input2502.txt:
--------------------------------------------------------------------------------
1 | 6 9 7 8 5 4
2 |
--------------------------------------------------------------------------------
/target/classes/answer/25/input2503.txt:
--------------------------------------------------------------------------------
1 | 0 9 8 7 6 5
2 |
--------------------------------------------------------------------------------
/target/classes/answer/25/input2504.txt:
--------------------------------------------------------------------------------
1 | 1 3 5 7 9 0
2 |
--------------------------------------------------------------------------------
/target/classes/answer/25/input2505.txt:
--------------------------------------------------------------------------------
1 | 2 4 6 8 10 12
2 |
--------------------------------------------------------------------------------
/target/classes/answer/26/answer2601.txt:
--------------------------------------------------------------------------------
1 | 1 2 3 4 5 6
2 |
--------------------------------------------------------------------------------
/target/classes/answer/26/answer2602.txt:
--------------------------------------------------------------------------------
1 | 4 5 6 7 8 9
2 |
--------------------------------------------------------------------------------
/target/classes/answer/26/answer2603.txt:
--------------------------------------------------------------------------------
1 | 0 5 6 7 8 9
2 |
--------------------------------------------------------------------------------
/target/classes/answer/26/answer2604.txt:
--------------------------------------------------------------------------------
1 | 0 1 3 5 7 9
2 |
--------------------------------------------------------------------------------
/target/classes/answer/26/answer2605.txt:
--------------------------------------------------------------------------------
1 | 2 4 6 8 10 12
2 |
--------------------------------------------------------------------------------
/target/classes/answer/26/input2601.txt:
--------------------------------------------------------------------------------
1 | 1 6 5 3 4 2
2 |
--------------------------------------------------------------------------------
/target/classes/answer/26/input2602.txt:
--------------------------------------------------------------------------------
1 | 6 9 7 8 5 4
2 |
--------------------------------------------------------------------------------
/target/classes/answer/26/input2603.txt:
--------------------------------------------------------------------------------
1 | 0 9 8 7 6 5
2 |
--------------------------------------------------------------------------------
/target/classes/answer/26/input2604.txt:
--------------------------------------------------------------------------------
1 | 1 3 5 7 9 0
2 |
--------------------------------------------------------------------------------
/target/classes/answer/26/input2605.txt:
--------------------------------------------------------------------------------
1 | 2 4 6 8 10 12
2 |
--------------------------------------------------------------------------------
/target/classes/answer/27/answer2701.txt:
--------------------------------------------------------------------------------
1 | 6
2 |
--------------------------------------------------------------------------------
/target/classes/answer/27/answer2702.txt:
--------------------------------------------------------------------------------
1 | 9
2 |
--------------------------------------------------------------------------------
/target/classes/answer/27/answer2703.txt:
--------------------------------------------------------------------------------
1 | 9
2 |
--------------------------------------------------------------------------------
/target/classes/answer/27/answer2704.txt:
--------------------------------------------------------------------------------
1 | 9
2 |
--------------------------------------------------------------------------------
/target/classes/answer/27/answer2705.txt:
--------------------------------------------------------------------------------
1 | 12
2 |
--------------------------------------------------------------------------------
/target/classes/answer/27/input2701.txt:
--------------------------------------------------------------------------------
1 | 1 6 5 3 4 2
2 |
--------------------------------------------------------------------------------
/target/classes/answer/27/input2702.txt:
--------------------------------------------------------------------------------
1 | 6 9 7 8 5 4
2 |
--------------------------------------------------------------------------------
/target/classes/answer/27/input2703.txt:
--------------------------------------------------------------------------------
1 | 0 9 8 7 6 5
2 |
--------------------------------------------------------------------------------
/target/classes/answer/27/input2704.txt:
--------------------------------------------------------------------------------
1 | 1 3 5 7 9 0
2 |
--------------------------------------------------------------------------------
/target/classes/answer/27/input2705.txt:
--------------------------------------------------------------------------------
1 | 2 4 6 8 10 12
2 |
--------------------------------------------------------------------------------
/target/classes/answer/28/answer2801.txt:
--------------------------------------------------------------------------------
1 | in
2 |
--------------------------------------------------------------------------------
/target/classes/answer/28/answer2802.txt:
--------------------------------------------------------------------------------
1 | not in
2 |
--------------------------------------------------------------------------------
/target/classes/answer/28/answer2803.txt:
--------------------------------------------------------------------------------
1 | not in
2 |
--------------------------------------------------------------------------------
/target/classes/answer/28/answer2804.txt:
--------------------------------------------------------------------------------
1 | in
2 |
--------------------------------------------------------------------------------
/target/classes/answer/28/answer2805.txt:
--------------------------------------------------------------------------------
1 | in
2 |
--------------------------------------------------------------------------------
/target/classes/answer/28/input2801.txt:
--------------------------------------------------------------------------------
1 | 10
2 |
--------------------------------------------------------------------------------
/target/classes/answer/28/input2802.txt:
--------------------------------------------------------------------------------
1 | 7
2 |
--------------------------------------------------------------------------------
/target/classes/answer/28/input2803.txt:
--------------------------------------------------------------------------------
1 | 9
2 |
--------------------------------------------------------------------------------
/target/classes/answer/28/input2804.txt:
--------------------------------------------------------------------------------
1 | 70
2 |
--------------------------------------------------------------------------------
/target/classes/answer/28/input2805.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/classes/answer/29/answer2901.txt:
--------------------------------------------------------------------------------
1 | 9.60
2 |
--------------------------------------------------------------------------------
/target/classes/answer/29/answer2902.txt:
--------------------------------------------------------------------------------
1 | 9.33
2 |
--------------------------------------------------------------------------------
/target/classes/answer/29/answer2903.txt:
--------------------------------------------------------------------------------
1 | 10.67
2 |
--------------------------------------------------------------------------------
/target/classes/answer/29/answer2904.txt:
--------------------------------------------------------------------------------
1 | 3.00
2 |
--------------------------------------------------------------------------------
/target/classes/answer/29/answer2905.txt:
--------------------------------------------------------------------------------
1 | 8.90
2 |
--------------------------------------------------------------------------------
/target/classes/answer/29/input2901.txt:
--------------------------------------------------------------------------------
1 | 9.5 9.8 9.7 9.4 9.6
2 |
--------------------------------------------------------------------------------
/target/classes/answer/29/input2902.txt:
--------------------------------------------------------------------------------
1 | 10 9 8 12 9
2 |
--------------------------------------------------------------------------------
/target/classes/answer/29/input2903.txt:
--------------------------------------------------------------------------------
1 | 11 10 8 12 11
2 |
--------------------------------------------------------------------------------
/target/classes/answer/29/input2904.txt:
--------------------------------------------------------------------------------
1 | 1 2 3 4 5
2 |
--------------------------------------------------------------------------------
/target/classes/answer/29/input2905.txt:
--------------------------------------------------------------------------------
1 | 8.7 9.0 9.0 8.8 8.9
2 |
--------------------------------------------------------------------------------
/target/classes/answer/3/answer301.txt:
--------------------------------------------------------------------------------
1 | 10
2 |
--------------------------------------------------------------------------------
/target/classes/answer/3/answer302.txt:
--------------------------------------------------------------------------------
1 | 11
2 |
--------------------------------------------------------------------------------
/target/classes/answer/3/answer303.txt:
--------------------------------------------------------------------------------
1 | 24
2 |
--------------------------------------------------------------------------------
/target/classes/answer/3/answer304.txt:
--------------------------------------------------------------------------------
1 | 26
2 |
--------------------------------------------------------------------------------
/target/classes/answer/3/answer305.txt:
--------------------------------------------------------------------------------
1 | 24
2 |
--------------------------------------------------------------------------------
/target/classes/answer/3/input301.txt:
--------------------------------------------------------------------------------
1 | 1234
2 |
--------------------------------------------------------------------------------
/target/classes/answer/3/input302.txt:
--------------------------------------------------------------------------------
1 | 3008
2 |
--------------------------------------------------------------------------------
/target/classes/answer/3/input303.txt:
--------------------------------------------------------------------------------
1 | 6666
2 |
--------------------------------------------------------------------------------
/target/classes/answer/3/input304.txt:
--------------------------------------------------------------------------------
1 | 6578
2 |
--------------------------------------------------------------------------------
/target/classes/answer/3/input305.txt:
--------------------------------------------------------------------------------
1 | 9087
2 |
--------------------------------------------------------------------------------
/target/classes/answer/30/answer3001.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 1 1
3 | 1 2 1
4 |
--------------------------------------------------------------------------------
/target/classes/answer/30/answer3002.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 1 1
3 | 1 2 1
4 | 1 3 3 1
5 | 1 4 6 4 1
6 |
--------------------------------------------------------------------------------
/target/classes/answer/30/answer3003.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 1 1
3 | 1 2 1
4 | 1 3 3 1
5 |
--------------------------------------------------------------------------------
/target/classes/answer/30/answer3004.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 1 1
3 | 1 2 1
4 | 1 3 3 1
5 | 1 4 6 4 1
6 | 1 5 10 10 5 1
7 |
--------------------------------------------------------------------------------
/target/classes/answer/30/answer3005.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 1 1
3 | 1 2 1
4 | 1 3 3 1
5 | 1 4 6 4 1
6 | 1 5 10 10 5 1
7 | 1 6 15 20 15 6 1
8 |
--------------------------------------------------------------------------------
/target/classes/answer/30/input3001.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/classes/answer/30/input3002.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/target/classes/answer/30/input3003.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/target/classes/answer/30/input3004.txt:
--------------------------------------------------------------------------------
1 | 6
2 |
--------------------------------------------------------------------------------
/target/classes/answer/30/input3005.txt:
--------------------------------------------------------------------------------
1 | 7
2 |
--------------------------------------------------------------------------------
/target/classes/answer/36/answer3601.txt:
--------------------------------------------------------------------------------
1 | a
2 |
--------------------------------------------------------------------------------
/target/classes/answer/36/answer3602.txt:
--------------------------------------------------------------------------------
1 | s
2 |
--------------------------------------------------------------------------------
/target/classes/answer/36/input3601.txt:
--------------------------------------------------------------------------------
1 | a
2 |
--------------------------------------------------------------------------------
/target/classes/answer/36/input3602.txt:
--------------------------------------------------------------------------------
1 | s
2 |
--------------------------------------------------------------------------------
/target/classes/answer/4/answer401.txt:
--------------------------------------------------------------------------------
1 | 120
2 |
--------------------------------------------------------------------------------
/target/classes/answer/4/answer402.txt:
--------------------------------------------------------------------------------
1 | 720
2 |
--------------------------------------------------------------------------------
/target/classes/answer/4/answer403.txt:
--------------------------------------------------------------------------------
1 | 5040
2 |
--------------------------------------------------------------------------------
/target/classes/answer/4/answer404.txt:
--------------------------------------------------------------------------------
1 | 362880
2 |
--------------------------------------------------------------------------------
/target/classes/answer/4/answer405.txt:
--------------------------------------------------------------------------------
1 | 40320
2 |
--------------------------------------------------------------------------------
/target/classes/answer/4/input401.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/target/classes/answer/4/input402.txt:
--------------------------------------------------------------------------------
1 | 6
2 |
--------------------------------------------------------------------------------
/target/classes/answer/4/input403.txt:
--------------------------------------------------------------------------------
1 | 7
2 |
--------------------------------------------------------------------------------
/target/classes/answer/4/input404.txt:
--------------------------------------------------------------------------------
1 | 9
2 |
--------------------------------------------------------------------------------
/target/classes/answer/4/input405.txt:
--------------------------------------------------------------------------------
1 | 8
2 |
--------------------------------------------------------------------------------
/target/classes/answer/5/answer501.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/classes/answer/5/answer502.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/target/classes/answer/5/answer503.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/classes/answer/5/answer504.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/target/classes/answer/5/answer505.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/target/classes/answer/5/input501.txt:
--------------------------------------------------------------------------------
1 | abc123
2 |
--------------------------------------------------------------------------------
/target/classes/answer/5/input502.txt:
--------------------------------------------------------------------------------
1 | 78ab659
2 |
--------------------------------------------------------------------------------
/target/classes/answer/5/input503.txt:
--------------------------------------------------------------------------------
1 | AB867fgh
2 |
--------------------------------------------------------------------------------
/target/classes/answer/5/input504.txt:
--------------------------------------------------------------------------------
1 | a2b3c4d5
2 |
--------------------------------------------------------------------------------
/target/classes/answer/5/input505.txt:
--------------------------------------------------------------------------------
1 | we45600l
2 |
--------------------------------------------------------------------------------
/target/classes/answer/6/answer601.txt:
--------------------------------------------------------------------------------
1 | 2500
2 |
--------------------------------------------------------------------------------
/target/classes/answer/7/answer701.txt:
--------------------------------------------------------------------------------
1 | 2 12
2 |
--------------------------------------------------------------------------------
/target/classes/answer/7/answer702.txt:
--------------------------------------------------------------------------------
1 | 8 360
2 |
--------------------------------------------------------------------------------
/target/classes/answer/7/answer703.txt:
--------------------------------------------------------------------------------
1 | 4 48
2 |
--------------------------------------------------------------------------------
/target/classes/answer/7/answer704.txt:
--------------------------------------------------------------------------------
1 | 25 150
2 |
--------------------------------------------------------------------------------
/target/classes/answer/7/answer705.txt:
--------------------------------------------------------------------------------
1 | 1 6
2 |
--------------------------------------------------------------------------------
/target/classes/answer/7/input701.txt:
--------------------------------------------------------------------------------
1 | 4 6
2 |
--------------------------------------------------------------------------------
/target/classes/answer/7/input702.txt:
--------------------------------------------------------------------------------
1 | 72 40
2 |
--------------------------------------------------------------------------------
/target/classes/answer/7/input703.txt:
--------------------------------------------------------------------------------
1 | 16 12
2 |
--------------------------------------------------------------------------------
/target/classes/answer/7/input704.txt:
--------------------------------------------------------------------------------
1 | 50 75
2 |
--------------------------------------------------------------------------------
/target/classes/answer/7/input705.txt:
--------------------------------------------------------------------------------
1 | 2 3
2 |
--------------------------------------------------------------------------------
/target/classes/answer/8/answer801.txt:
--------------------------------------------------------------------------------
1 | 192 384 576
2 | 219 438 657
3 | 273 546 819
4 | 327 654 981
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/target/classes/answer/8/example801.txt:
--------------------------------------------------------------------------------
1 | 192 384 576
2 | 219 438 657
--------------------------------------------------------------------------------
/target/classes/answer/9/answer901.txt:
--------------------------------------------------------------------------------
1 | 54321
2 |
--------------------------------------------------------------------------------
/target/classes/answer/9/answer902.txt:
--------------------------------------------------------------------------------
1 | 9876
2 |
--------------------------------------------------------------------------------
/target/classes/answer/9/answer903.txt:
--------------------------------------------------------------------------------
1 | 4321
2 |
--------------------------------------------------------------------------------
/target/classes/answer/9/answer904.txt:
--------------------------------------------------------------------------------
1 | 8501
2 |
--------------------------------------------------------------------------------
/target/classes/answer/9/answer905.txt:
--------------------------------------------------------------------------------
1 | 1111
2 |
--------------------------------------------------------------------------------
/target/classes/answer/9/input901.txt:
--------------------------------------------------------------------------------
1 | 12345
2 |
--------------------------------------------------------------------------------
/target/classes/answer/9/input902.txt:
--------------------------------------------------------------------------------
1 | 6789
2 |
--------------------------------------------------------------------------------
/target/classes/answer/9/input903.txt:
--------------------------------------------------------------------------------
1 | 1234
2 |
--------------------------------------------------------------------------------
/target/classes/answer/9/input904.txt:
--------------------------------------------------------------------------------
1 | 1058
2 |
--------------------------------------------------------------------------------
/target/classes/answer/9/input905.txt:
--------------------------------------------------------------------------------
1 | 1111
2 |
--------------------------------------------------------------------------------
/target/classes/codeStr/2016206929/1.txt:
--------------------------------------------------------------------------------
1 | public class Main {
2 | public static void main(String[] args){
3 | System.out.println("*");
4 | System.out.println("***");
5 | System.out.println("*****");
6 | }
7 | }
--------------------------------------------------------------------------------
/target/classes/codeStr/2016206929/4.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/codeStr/2016206929/4.txt
--------------------------------------------------------------------------------
/target/classes/com/violetks/complierun/ByteJavaFileObject.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/complierun/ByteJavaFileObject.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/complierun/ClassFileManager$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/complierun/ClassFileManager$1.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/complierun/ClassFileManager.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/complierun/ClassFileManager.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/complierun/JavaCompileRun.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/complierun/JavaCompileRun.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/complierun/JavaSourceFromString.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/complierun/JavaSourceFromString.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/dao/BaseDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/dao/BaseDao.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/dao/MarkDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/dao/MarkDao.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/dao/QuestionDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/dao/QuestionDao.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/dao/RanklistDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/dao/RanklistDao.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/dao/RecordDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/dao/RecordDao.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/dao/StudentDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/dao/StudentDao.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/dao/TeacherDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/dao/TeacherDao.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/entity/Mark.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/entity/Mark.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/entity/Question.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/entity/Question.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/entity/Record.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/entity/Record.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/entity/Student.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/entity/Student.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/entity/Teacher.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/entity/Teacher.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/fileUtil/CheckSame.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/fileUtil/CheckSame.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/fileUtil/CodeInput.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/fileUtil/CodeInput.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/fileUtil/CodeOutput.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/fileUtil/CodeOutput.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/fileUtil/FileInput.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/fileUtil/FileInput.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/fileUtil/FileOutput.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/fileUtil/FileOutput.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/fileUtil/StrSplit.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/fileUtil/StrSplit.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/filter/LoginFilter.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/filter/LoginFilter.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/service/MarkService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/service/MarkService.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/service/QuestionService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/service/QuestionService.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/service/RecordService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/service/RecordService.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/service/StudentService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/service/StudentService.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/service/TeacherService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/service/TeacherService.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/servlet/AddMarkServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/servlet/AddMarkServlet.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/servlet/AddQuestionServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/servlet/AddQuestionServlet.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/servlet/CheckSameServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/servlet/CheckSameServlet.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/servlet/CompileRunServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/servlet/CompileRunServlet.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/servlet/DelQuestionServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/servlet/DelQuestionServlet.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/servlet/QuestionTestServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/servlet/QuestionTestServlet.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/servlet/SmsServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/servlet/SmsServlet.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/servlet/StuLoginServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/servlet/StuLoginServlet.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/servlet/StuRegisterServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/servlet/StuRegisterServlet.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/servlet/TeaLoginServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/servlet/TeaLoginServlet.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/servlet/TeaRegisterServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/servlet/TeaRegisterServlet.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/smsUtil/PhoneCode.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/smsUtil/PhoneCode.class
--------------------------------------------------------------------------------
/target/classes/com/violetks/smsUtil/StaticParam.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/classes/com/violetks/smsUtil/StaticParam.class
--------------------------------------------------------------------------------
/target/classes/output/2016206929/101.txt:
--------------------------------------------------------------------------------
1 | *
2 | ***
3 | *****
4 |
--------------------------------------------------------------------------------
/target/classes/output/2016206929/401.txt:
--------------------------------------------------------------------------------
1 | 120
--------------------------------------------------------------------------------
/target/classes/output/2016206929/402.txt:
--------------------------------------------------------------------------------
1 | 720
--------------------------------------------------------------------------------
/target/classes/output/2016206929/403.txt:
--------------------------------------------------------------------------------
1 | 5040
--------------------------------------------------------------------------------
/target/classes/output/2016206929/404.txt:
--------------------------------------------------------------------------------
1 | 362880
--------------------------------------------------------------------------------
/target/classes/output/2016206929/405.txt:
--------------------------------------------------------------------------------
1 | 1
--------------------------------------------------------------------------------
/target/maven-archiver/pom.properties:
--------------------------------------------------------------------------------
1 | #Created by Apache Maven 3.3.9
2 | version=1.0-SNAPSHOT
3 | groupId=com.violetks
4 | artifactId=practice_system
5 |
--------------------------------------------------------------------------------
/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
--------------------------------------------------------------------------------
/target/practice_system.war:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system.war
--------------------------------------------------------------------------------
/target/practice_system/META-INF/MANIFEST.MF:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | Built-By: Xionglin
3 | Created-By: IntelliJ IDEA
4 | Build-Jdk: 1.8.0_65
5 |
6 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/META-INF/practice_system.kotlin_module:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/1/answer101.txt:
--------------------------------------------------------------------------------
1 | *
2 | ***
3 | *****
4 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/1/example101.txt:
--------------------------------------------------------------------------------
1 | *
2 | ***
3 | *****
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/10/answer1001.txt:
--------------------------------------------------------------------------------
1 | 18
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/10/answer1002.txt:
--------------------------------------------------------------------------------
1 | 45
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/10/answer1003.txt:
--------------------------------------------------------------------------------
1 | 63
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/10/answer1004.txt:
--------------------------------------------------------------------------------
1 | 108
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/10/answer1005.txt:
--------------------------------------------------------------------------------
1 | 165
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/10/input1001.txt:
--------------------------------------------------------------------------------
1 | 10
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/10/input1002.txt:
--------------------------------------------------------------------------------
1 | 15
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/10/input1003.txt:
--------------------------------------------------------------------------------
1 | 20
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/10/input1004.txt:
--------------------------------------------------------------------------------
1 | 25
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/10/input1005.txt:
--------------------------------------------------------------------------------
1 | 30
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/11/answer1101.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 2 4
3 | 3 6 9
4 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/11/answer1102.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 2 4
3 | 3 6 9
4 | 4 8 12 16
5 | 5 10 15 20 25
6 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/11/answer1103.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 2 4
3 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/11/answer1104.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 2 4
3 | 3 6 9
4 | 4 8 12 16
5 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/11/answer1105.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 2 4
3 | 3 6 9
4 | 4 8 12 16
5 | 5 10 15 20 25
6 | 6 12 18 24 30 36
7 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/11/input1101.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/11/input1102.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/11/input1103.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/11/input1104.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/11/input1105.txt:
--------------------------------------------------------------------------------
1 | 6
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/12/answer1201.txt:
--------------------------------------------------------------------------------
1 | 4 1
2 | 3 2
3 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/12/answer1202.txt:
--------------------------------------------------------------------------------
1 | 7 8 1
2 | 6 9 2
3 | 5 4 3
4 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/12/answer1203.txt:
--------------------------------------------------------------------------------
1 | 10 11 12 1
2 | 9 16 13 2
3 | 8 15 14 3
4 | 7 6 5 4
5 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/12/answer1204.txt:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/12/answer1205.txt:
--------------------------------------------------------------------------------
1 | 19 20 21 22 23 24 1
2 | 18 37 38 39 40 25 2
3 | 17 36 47 48 41 26 3
4 | 16 35 46 49 42 27 4
5 | 15 34 45 44 43 28 5
6 | 14 33 32 31 30 29 6
7 | 13 12 11 10 9 8 7
8 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/12/input1201.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/12/input1202.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/12/input1203.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/12/input1204.txt:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/12/input1205.txt:
--------------------------------------------------------------------------------
1 | 7
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/13/answer1301.txt:
--------------------------------------------------------------------------------
1 | 32
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/13/answer1302.txt:
--------------------------------------------------------------------------------
1 | 55
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/13/answer1303.txt:
--------------------------------------------------------------------------------
1 | 76
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/13/answer1304.txt:
--------------------------------------------------------------------------------
1 | 117
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/13/answer1305.txt:
--------------------------------------------------------------------------------
1 | 314
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/13/input1301.txt:
--------------------------------------------------------------------------------
1 | 1A
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/13/input1302.txt:
--------------------------------------------------------------------------------
1 | 2D
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/13/input1303.txt:
--------------------------------------------------------------------------------
1 | 3E
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/13/input1304.txt:
--------------------------------------------------------------------------------
1 | 4F
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/13/input1305.txt:
--------------------------------------------------------------------------------
1 | CC
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/14/answer1401.txt:
--------------------------------------------------------------------------------
1 | 153
2 | 370
3 | 371
4 | 407
5 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/14/example1401.txt:
--------------------------------------------------------------------------------
1 | 153
2 | 371
3 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/15/answer1501.txt:
--------------------------------------------------------------------------------
1 | 101
2 | 103
3 | 107
4 | 109
5 | 113
6 | 127
7 | 131
8 | 137
9 | 139
10 | 149
11 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/15/example1501.txt:
--------------------------------------------------------------------------------
1 | 101
2 | 103
3 | 107
4 | 149
5 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/16/answer1601.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/16/answer1602.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/16/answer1603.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/16/answer1604.txt:
--------------------------------------------------------------------------------
1 | 2000
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/16/answer1605.txt:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/16/input1601.txt:
--------------------------------------------------------------------------------
1 | 1 2
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/16/input1602.txt:
--------------------------------------------------------------------------------
1 | 3 4
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/16/input1603.txt:
--------------------------------------------------------------------------------
1 | 5 2
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/16/input1604.txt:
--------------------------------------------------------------------------------
1 | 1000 2000
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/16/input1605.txt:
--------------------------------------------------------------------------------
1 | 1 0
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/17/answer1701.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/17/answer1702.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/17/answer1703.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/17/answer1704.txt:
--------------------------------------------------------------------------------
1 | 2000
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/17/answer1705.txt:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/17/input1701.txt:
--------------------------------------------------------------------------------
1 | 1 2 3
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/17/input1702.txt:
--------------------------------------------------------------------------------
1 | 3 4 1
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/17/input1703.txt:
--------------------------------------------------------------------------------
1 | 5 2 0
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/17/input1704.txt:
--------------------------------------------------------------------------------
1 | 1000 2000 345
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/17/input1705.txt:
--------------------------------------------------------------------------------
1 | 1 0 0
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/18/answer1801.txt:
--------------------------------------------------------------------------------
1 | 2.7182815255731922
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/18/example1801.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/answer/18/example1801.txt
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/19/answer1901.txt:
--------------------------------------------------------------------------------
1 | 46
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/19/answer1902.txt:
--------------------------------------------------------------------------------
1 | 71
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/19/answer1903.txt:
--------------------------------------------------------------------------------
1 | 284
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/19/answer1904.txt:
--------------------------------------------------------------------------------
1 | 169
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/19/answer1905.txt:
--------------------------------------------------------------------------------
1 | 124
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/19/input1901.txt:
--------------------------------------------------------------------------------
1 | 2015 2 15
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/19/input1902.txt:
--------------------------------------------------------------------------------
1 | 1998 3 12
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/19/input1903.txt:
--------------------------------------------------------------------------------
1 | 2000 10 10
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/19/input1904.txt:
--------------------------------------------------------------------------------
1 | 1997 6 18
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/19/input1905.txt:
--------------------------------------------------------------------------------
1 | 2018 5 4
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/2/answer201.txt:
--------------------------------------------------------------------------------
1 | even
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/2/answer202.txt:
--------------------------------------------------------------------------------
1 | odd
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/2/answer203.txt:
--------------------------------------------------------------------------------
1 | even
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/2/answer204.txt:
--------------------------------------------------------------------------------
1 | odd
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/2/answer205.txt:
--------------------------------------------------------------------------------
1 | odd
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/2/input201.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/2/input202.txt:
--------------------------------------------------------------------------------
1 | 67
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/2/input203.txt:
--------------------------------------------------------------------------------
1 | 800
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/2/input204.txt:
--------------------------------------------------------------------------------
1 | 777
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/2/input205.txt:
--------------------------------------------------------------------------------
1 | 979
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/20/answer2001.txt:
--------------------------------------------------------------------------------
1 | no
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/20/answer2002.txt:
--------------------------------------------------------------------------------
1 | yes
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/20/answer2003.txt:
--------------------------------------------------------------------------------
1 | no
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/20/answer2004.txt:
--------------------------------------------------------------------------------
1 | yes
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/20/answer2005.txt:
--------------------------------------------------------------------------------
1 | yes
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/20/input2001.txt:
--------------------------------------------------------------------------------
1 | 1900
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/20/input2002.txt:
--------------------------------------------------------------------------------
1 | 2000
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/20/input2003.txt:
--------------------------------------------------------------------------------
1 | 1997
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/20/input2004.txt:
--------------------------------------------------------------------------------
1 | 1996
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/20/input2005.txt:
--------------------------------------------------------------------------------
1 | 2016
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/21/answer2101.txt:
--------------------------------------------------------------------------------
1 | ain
2 | grain
3 | in
4 | n
5 | rain
6 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/21/answer2102.txt:
--------------------------------------------------------------------------------
1 | ell
2 | l
3 | ll
4 | well
5 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/21/answer2103.txt:
--------------------------------------------------------------------------------
1 | dent
2 | ent
3 | nt
4 | student
5 | t
6 | tudent
7 | udent
8 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/21/answer2104.txt:
--------------------------------------------------------------------------------
1 | acher
2 | cher
3 | eacher
4 | er
5 | her
6 | r
7 | teacher
8 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/21/answer2105.txt:
--------------------------------------------------------------------------------
1 | boy
2 | oy
3 | y
4 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/21/input2101.txt:
--------------------------------------------------------------------------------
1 | grain
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/21/input2102.txt:
--------------------------------------------------------------------------------
1 | well
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/21/input2103.txt:
--------------------------------------------------------------------------------
1 | student
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/21/input2104.txt:
--------------------------------------------------------------------------------
1 | teacher
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/21/input2105.txt:
--------------------------------------------------------------------------------
1 | boy
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/22/answer2201.txt:
--------------------------------------------------------------------------------
1 | A-->B
2 | A-->C
3 | B-->C
4 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/22/answer2202.txt:
--------------------------------------------------------------------------------
1 | A-->C
2 | A-->B
3 | C-->B
4 | A-->C
5 | B-->A
6 | B-->C
7 | A-->C
8 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/22/answer2203.txt:
--------------------------------------------------------------------------------
1 | A-->B
2 | A-->C
3 | B-->C
4 | A-->B
5 | C-->A
6 | C-->B
7 | A-->B
8 | A-->C
9 | B-->C
10 | B-->A
11 | C-->A
12 | B-->C
13 | A-->B
14 | A-->C
15 | B-->C
16 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/22/answer2204.txt:
--------------------------------------------------------------------------------
1 | A-->C
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/22/answer2205.txt:
--------------------------------------------------------------------------------
1 | A-->C
2 | A-->B
3 | C-->B
4 | A-->C
5 | B-->A
6 | B-->C
7 | A-->C
8 | A-->B
9 | C-->B
10 | C-->A
11 | B-->A
12 | C-->B
13 | A-->C
14 | A-->B
15 | C-->B
16 | A-->C
17 | B-->A
18 | B-->C
19 | A-->C
20 | B-->A
21 | C-->B
22 | C-->A
23 | B-->A
24 | B-->C
25 | A-->C
26 | A-->B
27 | C-->B
28 | A-->C
29 | B-->A
30 | B-->C
31 | A-->C
32 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/22/input2201.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/22/input2202.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/22/input2203.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/22/input2204.txt:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/22/input2205.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/23/answer2301.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/23/answer2302.txt:
--------------------------------------------------------------------------------
1 | 12586269025
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/23/answer2303.txt:
--------------------------------------------------------------------------------
1 | 832040
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/23/answer2304.txt:
--------------------------------------------------------------------------------
1 | 6765
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/23/answer2305.txt:
--------------------------------------------------------------------------------
1 | 3736710778780434371
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/23/input2301.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/23/input2302.txt:
--------------------------------------------------------------------------------
1 | 50
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/23/input2303.txt:
--------------------------------------------------------------------------------
1 | 30
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/23/input2304.txt:
--------------------------------------------------------------------------------
1 | 20
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/23/input2305.txt:
--------------------------------------------------------------------------------
1 | 100
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/24/answer2401.txt:
--------------------------------------------------------------------------------
1 | 20
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/24/answer2402.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/24/answer2403.txt:
--------------------------------------------------------------------------------
1 | 60
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/24/answer2404.txt:
--------------------------------------------------------------------------------
1 | 30
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/24/answer2405.txt:
--------------------------------------------------------------------------------
1 | 28
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/24/input2401.txt:
--------------------------------------------------------------------------------
1 | 2 4 5
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/24/input2402.txt:
--------------------------------------------------------------------------------
1 | 3 1 1
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/24/input2403.txt:
--------------------------------------------------------------------------------
1 | 3 4 5
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/24/input2404.txt:
--------------------------------------------------------------------------------
1 | 6 5 3
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/24/input2405.txt:
--------------------------------------------------------------------------------
1 | 1 4 7
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/25/answer2501.txt:
--------------------------------------------------------------------------------
1 | 6 5 4 3 2 1
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/25/answer2502.txt:
--------------------------------------------------------------------------------
1 | 4 5 8 7 9 6
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/25/answer2503.txt:
--------------------------------------------------------------------------------
1 | 5 6 7 8 9 0
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/25/answer2504.txt:
--------------------------------------------------------------------------------
1 | 0 9 7 5 3 1
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/25/answer2505.txt:
--------------------------------------------------------------------------------
1 | 12 10 8 6 4 2
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/25/input2501.txt:
--------------------------------------------------------------------------------
1 | 1 2 3 4 5 6
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/25/input2502.txt:
--------------------------------------------------------------------------------
1 | 6 9 7 8 5 4
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/25/input2503.txt:
--------------------------------------------------------------------------------
1 | 0 9 8 7 6 5
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/25/input2504.txt:
--------------------------------------------------------------------------------
1 | 1 3 5 7 9 0
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/25/input2505.txt:
--------------------------------------------------------------------------------
1 | 2 4 6 8 10 12
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/26/answer2601.txt:
--------------------------------------------------------------------------------
1 | 1 2 3 4 5 6
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/26/answer2602.txt:
--------------------------------------------------------------------------------
1 | 4 5 6 7 8 9
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/26/answer2603.txt:
--------------------------------------------------------------------------------
1 | 0 5 6 7 8 9
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/26/answer2604.txt:
--------------------------------------------------------------------------------
1 | 0 1 3 5 7 9
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/26/answer2605.txt:
--------------------------------------------------------------------------------
1 | 2 4 6 8 10 12
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/26/input2601.txt:
--------------------------------------------------------------------------------
1 | 1 6 5 3 4 2
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/26/input2602.txt:
--------------------------------------------------------------------------------
1 | 6 9 7 8 5 4
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/26/input2603.txt:
--------------------------------------------------------------------------------
1 | 0 9 8 7 6 5
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/26/input2604.txt:
--------------------------------------------------------------------------------
1 | 1 3 5 7 9 0
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/26/input2605.txt:
--------------------------------------------------------------------------------
1 | 2 4 6 8 10 12
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/27/answer2701.txt:
--------------------------------------------------------------------------------
1 | 6
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/27/answer2702.txt:
--------------------------------------------------------------------------------
1 | 9
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/27/answer2703.txt:
--------------------------------------------------------------------------------
1 | 9
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/27/answer2704.txt:
--------------------------------------------------------------------------------
1 | 9
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/27/answer2705.txt:
--------------------------------------------------------------------------------
1 | 12
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/27/input2701.txt:
--------------------------------------------------------------------------------
1 | 1 6 5 3 4 2
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/27/input2702.txt:
--------------------------------------------------------------------------------
1 | 6 9 7 8 5 4
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/27/input2703.txt:
--------------------------------------------------------------------------------
1 | 0 9 8 7 6 5
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/27/input2704.txt:
--------------------------------------------------------------------------------
1 | 1 3 5 7 9 0
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/27/input2705.txt:
--------------------------------------------------------------------------------
1 | 2 4 6 8 10 12
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/28/answer2801.txt:
--------------------------------------------------------------------------------
1 | in
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/28/answer2802.txt:
--------------------------------------------------------------------------------
1 | not in
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/28/answer2803.txt:
--------------------------------------------------------------------------------
1 | not in
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/28/answer2804.txt:
--------------------------------------------------------------------------------
1 | in
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/28/answer2805.txt:
--------------------------------------------------------------------------------
1 | in
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/28/input2801.txt:
--------------------------------------------------------------------------------
1 | 10
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/28/input2802.txt:
--------------------------------------------------------------------------------
1 | 7
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/28/input2803.txt:
--------------------------------------------------------------------------------
1 | 9
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/28/input2804.txt:
--------------------------------------------------------------------------------
1 | 70
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/28/input2805.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/29/answer2901.txt:
--------------------------------------------------------------------------------
1 | 9.60
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/29/answer2902.txt:
--------------------------------------------------------------------------------
1 | 9.33
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/29/answer2903.txt:
--------------------------------------------------------------------------------
1 | 10.67
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/29/answer2904.txt:
--------------------------------------------------------------------------------
1 | 3.00
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/29/answer2905.txt:
--------------------------------------------------------------------------------
1 | 8.90
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/29/input2901.txt:
--------------------------------------------------------------------------------
1 | 9.5 9.8 9.7 9.4 9.6
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/29/input2902.txt:
--------------------------------------------------------------------------------
1 | 10 9 8 12 9
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/29/input2903.txt:
--------------------------------------------------------------------------------
1 | 11 10 8 12 11
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/29/input2904.txt:
--------------------------------------------------------------------------------
1 | 1 2 3 4 5
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/29/input2905.txt:
--------------------------------------------------------------------------------
1 | 8.7 9.0 9.0 8.8 8.9
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/3/answer301.txt:
--------------------------------------------------------------------------------
1 | 10
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/3/answer302.txt:
--------------------------------------------------------------------------------
1 | 11
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/3/answer303.txt:
--------------------------------------------------------------------------------
1 | 24
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/3/answer304.txt:
--------------------------------------------------------------------------------
1 | 26
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/3/answer305.txt:
--------------------------------------------------------------------------------
1 | 24
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/3/input301.txt:
--------------------------------------------------------------------------------
1 | 1234
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/3/input302.txt:
--------------------------------------------------------------------------------
1 | 3008
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/3/input303.txt:
--------------------------------------------------------------------------------
1 | 6666
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/3/input304.txt:
--------------------------------------------------------------------------------
1 | 6578
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/3/input305.txt:
--------------------------------------------------------------------------------
1 | 9087
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/30/answer3001.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 1 1
3 | 1 2 1
4 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/30/answer3002.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 1 1
3 | 1 2 1
4 | 1 3 3 1
5 | 1 4 6 4 1
6 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/30/answer3003.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 1 1
3 | 1 2 1
4 | 1 3 3 1
5 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/30/answer3004.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 1 1
3 | 1 2 1
4 | 1 3 3 1
5 | 1 4 6 4 1
6 | 1 5 10 10 5 1
7 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/30/answer3005.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 1 1
3 | 1 2 1
4 | 1 3 3 1
5 | 1 4 6 4 1
6 | 1 5 10 10 5 1
7 | 1 6 15 20 15 6 1
8 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/30/input3001.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/30/input3002.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/30/input3003.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/30/input3004.txt:
--------------------------------------------------------------------------------
1 | 6
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/30/input3005.txt:
--------------------------------------------------------------------------------
1 | 7
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/36/answer3601.txt:
--------------------------------------------------------------------------------
1 | a
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/36/answer3602.txt:
--------------------------------------------------------------------------------
1 | s
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/36/input3601.txt:
--------------------------------------------------------------------------------
1 | a
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/36/input3602.txt:
--------------------------------------------------------------------------------
1 | s
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/4/answer401.txt:
--------------------------------------------------------------------------------
1 | 120
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/4/answer402.txt:
--------------------------------------------------------------------------------
1 | 720
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/4/answer403.txt:
--------------------------------------------------------------------------------
1 | 5040
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/4/answer404.txt:
--------------------------------------------------------------------------------
1 | 362880
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/4/answer405.txt:
--------------------------------------------------------------------------------
1 | 40320
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/4/input401.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/4/input402.txt:
--------------------------------------------------------------------------------
1 | 6
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/4/input403.txt:
--------------------------------------------------------------------------------
1 | 7
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/4/input404.txt:
--------------------------------------------------------------------------------
1 | 9
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/4/input405.txt:
--------------------------------------------------------------------------------
1 | 8
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/5/answer501.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/5/answer502.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/5/answer503.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/5/answer504.txt:
--------------------------------------------------------------------------------
1 | 4
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/5/answer505.txt:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/5/input501.txt:
--------------------------------------------------------------------------------
1 | abc123
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/5/input502.txt:
--------------------------------------------------------------------------------
1 | 78ab659
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/5/input503.txt:
--------------------------------------------------------------------------------
1 | AB867fgh
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/5/input504.txt:
--------------------------------------------------------------------------------
1 | a2b3c4d5
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/5/input505.txt:
--------------------------------------------------------------------------------
1 | we45600l
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/6/answer601.txt:
--------------------------------------------------------------------------------
1 | 2500
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/7/answer701.txt:
--------------------------------------------------------------------------------
1 | 2 12
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/7/answer702.txt:
--------------------------------------------------------------------------------
1 | 8 360
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/7/answer703.txt:
--------------------------------------------------------------------------------
1 | 4 48
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/7/answer704.txt:
--------------------------------------------------------------------------------
1 | 25 150
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/7/answer705.txt:
--------------------------------------------------------------------------------
1 | 1 6
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/7/input701.txt:
--------------------------------------------------------------------------------
1 | 4 6
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/7/input702.txt:
--------------------------------------------------------------------------------
1 | 72 40
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/7/input703.txt:
--------------------------------------------------------------------------------
1 | 16 12
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/7/input704.txt:
--------------------------------------------------------------------------------
1 | 50 75
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/7/input705.txt:
--------------------------------------------------------------------------------
1 | 2 3
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/8/answer801.txt:
--------------------------------------------------------------------------------
1 | 192 384 576
2 | 219 438 657
3 | 273 546 819
4 | 327 654 981
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/8/example801.txt:
--------------------------------------------------------------------------------
1 | 192 384 576
2 | 219 438 657
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/9/answer901.txt:
--------------------------------------------------------------------------------
1 | 54321
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/9/answer902.txt:
--------------------------------------------------------------------------------
1 | 9876
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/9/answer903.txt:
--------------------------------------------------------------------------------
1 | 4321
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/9/answer904.txt:
--------------------------------------------------------------------------------
1 | 8501
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/9/answer905.txt:
--------------------------------------------------------------------------------
1 | 1111
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/9/input901.txt:
--------------------------------------------------------------------------------
1 | 12345
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/9/input902.txt:
--------------------------------------------------------------------------------
1 | 6789
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/9/input903.txt:
--------------------------------------------------------------------------------
1 | 1234
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/9/input904.txt:
--------------------------------------------------------------------------------
1 | 1058
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/answer/9/input905.txt:
--------------------------------------------------------------------------------
1 | 1111
2 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/codeStr/2016206929/1.txt:
--------------------------------------------------------------------------------
1 | public class Main {
2 | public static void main(String[] args){
3 | System.out.println("*");
4 | System.out.println("***");
5 | System.out.println("*****");
6 | }
7 | }
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/codeStr/2016206929/4.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/codeStr/2016206929/4.txt
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/complierun/ByteJavaFileObject.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/complierun/ByteJavaFileObject.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/complierun/ClassFileManager$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/complierun/ClassFileManager$1.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/complierun/ClassFileManager.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/complierun/ClassFileManager.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/complierun/JavaCompileRun.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/complierun/JavaCompileRun.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/complierun/JavaSourceFromString.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/complierun/JavaSourceFromString.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/dao/BaseDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/dao/BaseDao.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/dao/MarkDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/dao/MarkDao.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/dao/QuestionDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/dao/QuestionDao.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/dao/RanklistDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/dao/RanklistDao.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/dao/RecordDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/dao/RecordDao.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/dao/StudentDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/dao/StudentDao.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/dao/TeacherDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/dao/TeacherDao.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/entity/Mark.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/entity/Mark.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/entity/Question.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/entity/Question.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/entity/Record.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/entity/Record.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/entity/Student.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/entity/Student.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/entity/Teacher.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/entity/Teacher.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/fileUtil/CheckSame.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/fileUtil/CheckSame.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/fileUtil/CodeInput.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/fileUtil/CodeInput.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/fileUtil/CodeOutput.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/fileUtil/CodeOutput.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/fileUtil/FileInput.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/fileUtil/FileInput.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/fileUtil/FileOutput.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/fileUtil/FileOutput.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/fileUtil/StrSplit.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/fileUtil/StrSplit.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/filter/LoginFilter.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/filter/LoginFilter.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/service/MarkService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/service/MarkService.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/service/QuestionService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/service/QuestionService.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/service/RecordService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/service/RecordService.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/service/StudentService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/service/StudentService.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/service/TeacherService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/service/TeacherService.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/servlet/AddMarkServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/servlet/AddMarkServlet.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/servlet/AddQuestionServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/servlet/AddQuestionServlet.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/servlet/CheckSameServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/servlet/CheckSameServlet.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/servlet/CompileRunServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/servlet/CompileRunServlet.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/servlet/DelQuestionServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/servlet/DelQuestionServlet.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/servlet/QuestionTestServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/servlet/QuestionTestServlet.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/servlet/SmsServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/servlet/SmsServlet.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/servlet/StuLoginServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/servlet/StuLoginServlet.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/servlet/StuRegisterServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/servlet/StuRegisterServlet.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/servlet/TeaLoginServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/servlet/TeaLoginServlet.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/servlet/TeaRegisterServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/servlet/TeaRegisterServlet.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/smsUtil/PhoneCode.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/smsUtil/PhoneCode.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/com/violetks/smsUtil/StaticParam.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/classes/com/violetks/smsUtil/StaticParam.class
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/output/2016206929/101.txt:
--------------------------------------------------------------------------------
1 | *
2 | ***
3 | *****
4 |
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/output/2016206929/401.txt:
--------------------------------------------------------------------------------
1 | 120
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/output/2016206929/402.txt:
--------------------------------------------------------------------------------
1 | 720
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/output/2016206929/403.txt:
--------------------------------------------------------------------------------
1 | 5040
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/output/2016206929/404.txt:
--------------------------------------------------------------------------------
1 | 362880
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/classes/output/2016206929/405.txt:
--------------------------------------------------------------------------------
1 | 1
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/lib/aliyun-java-sdk-core-3.7.1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/lib/aliyun-java-sdk-core-3.7.1.jar
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/lib/aliyun-java-sdk-dysmsapi-1.1.0.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/lib/aliyun-java-sdk-dysmsapi-1.1.0.jar
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/lib/json-20170516.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/lib/json-20170516.jar
--------------------------------------------------------------------------------
/target/practice_system/WEB-INF/lib/mysql-connector-java-5.1.47.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/WEB-INF/lib/mysql-connector-java-5.1.47.jar
--------------------------------------------------------------------------------
/target/practice_system/css/exerciseSet.css:
--------------------------------------------------------------------------------
1 | /*********** 选中练习记录 **********/
2 | #nav li:nth-child(3) {
3 | color: white;
4 | background-color: #3c4c5f;
5 | border-bottom: 3px solid #e45600;
6 | }
7 |
8 |
9 | /*********** 表格区域 **********/
10 | #topTable{
11 | margin-top: 60px;
12 | }
13 | table td{
14 | height: 25px;
15 | }
16 | #topTable a{
17 | text-decoration: none;
18 | }
19 | form{
20 | margin: 8px auto;
21 | }
22 | /*********** 分页区域 **********/
23 | #changePages{
24 | margin: 25px auto;
25 | font-family: 宋体;
26 | }
27 | #changePages a{
28 | text-decoration: none;
29 | }
--------------------------------------------------------------------------------
/target/practice_system/css/questionInput.css:
--------------------------------------------------------------------------------
1 | /*********** 选择上传试题类型 **********/
2 | #q_type ul {
3 | list-style: none;
4 | margin-top: 20px;
5 | }
6 |
7 | #q_type ul li {
8 | float: left;
9 | cursor: pointer;
10 | padding: 7px;
11 | margin-right: 3px;
12 | border: 1px solid #e45600;
13 | font-size: 13px;
14 | }
15 |
16 | .selected {
17 | color: white;
18 | border: 1px solid #e45600;
19 | background-color: #e45600;
20 | }
21 |
22 | /*********** 可变iframe **********/
23 | #changeContent{
24 | margin-top: 20px;
25 | margin-left: 30px;
26 | }
--------------------------------------------------------------------------------
/target/practice_system/css/rankList.css:
--------------------------------------------------------------------------------
1 | /*********** 选中排行榜 **********/
2 | #nav li:nth-child(4) {
3 | color: white;
4 | background-color: #3c4c5f;
5 | border-bottom: 3px solid #e45600;
6 | }
7 |
8 |
9 | /*********** 表格区域 **********/
10 | #topTable{
11 | margin-top: 60px;
12 | }
13 | table td{
14 | height: 25px;
15 | }
16 | #topTable a{
17 | text-decoration: none;
18 | }
19 | form{
20 | margin: 8px auto;
21 | }
22 | /*********** 分页区域 **********/
23 | #changePages{
24 | margin: 25px auto;
25 | font-family: 宋体;
26 | }
27 | #changePages a{
28 | text-decoration: none;
29 | }
--------------------------------------------------------------------------------
/target/practice_system/css/resetPwd.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/practice_system/css/resetPwd.css
--------------------------------------------------------------------------------
/target/practice_system/logout.jsp:
--------------------------------------------------------------------------------
1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
2 |
3 |
4 |
5 | 退出登录
6 |
7 |
8 | <% session.invalidate(); %>
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/target/practice_system/resetPwd.jsp:
--------------------------------------------------------------------------------
1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
2 |
3 |
4 |
5 |
6 | 重置密码
7 |
8 |
9 | 重置密码页
10 |
11 |
12 |
--------------------------------------------------------------------------------
/target/practice_system/teacher/studentRank.jsp:
--------------------------------------------------------------------------------
1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
2 |
3 |
4 |
5 | 学生成绩排行
6 |
7 |
8 | 学生成绩排行
9 |
10 |
11 |
--------------------------------------------------------------------------------
/target/practice_system/teacher/teacherAdmin.jsp:
--------------------------------------------------------------------------------
1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
2 |
3 |
4 |
5 | 个人中心
6 |
7 |
8 | 个人中心
9 |
10 |
11 |
--------------------------------------------------------------------------------
/target/test-classes/META-INF/practice_system.kotlin_module:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/target/test-classes/TestAddQuestion.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/test-classes/TestAddQuestion.class
--------------------------------------------------------------------------------
/target/test-classes/TestCheckSame.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/test-classes/TestCheckSame.class
--------------------------------------------------------------------------------
/target/test-classes/TestDeleteQuestion.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/test-classes/TestDeleteQuestion.class
--------------------------------------------------------------------------------
/target/test-classes/TestDirectoryLength.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/test-classes/TestDirectoryLength.class
--------------------------------------------------------------------------------
/target/test-classes/TestFileCompare.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/test-classes/TestFileCompare.class
--------------------------------------------------------------------------------
/target/test-classes/TestFileCompileRun.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/test-classes/TestFileCompileRun.class
--------------------------------------------------------------------------------
/target/test-classes/TestFileInput.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/test-classes/TestFileInput.class
--------------------------------------------------------------------------------
/target/test-classes/TestFileOutput.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/test-classes/TestFileOutput.class
--------------------------------------------------------------------------------
/target/test-classes/TestScanner.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/test-classes/TestScanner.class
--------------------------------------------------------------------------------
/target/test-classes/TestSms.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/test-classes/TestSms.class
--------------------------------------------------------------------------------
/target/test-classes/TestStudentDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/test-classes/TestStudentDao.class
--------------------------------------------------------------------------------
/target/test-classes/TestTeacherDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/violetks/practice_system/37be5bd1d60b315e6fffe3c8d71745f14cdd2732/target/test-classes/TestTeacherDao.class
--------------------------------------------------------------------------------