Skip to content

Commit 07ee06f

Browse files
committed
0911
1 parent 0d42812 commit 07ee06f

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

.idea/modules.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

BOJ/gold/BOJ2293/src/Main.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33

44
public class Main {
55
public static void main(String[] args) {
6-
// 0,1,2,3,4,5,6,7,8,9,10
7-
// 1 0,1,1,1,1,1,1,1,1,1,1
8-
// 2 0,0 1,1
9-
// 3 0 0 0 2
6+
// 0 1 2 3 4 5 6 7 8 9 10
7+
// 1 1 1 1 1 1 1 1 1 1 1 1
8+
// 2 0 0 1 1 2 2 3 3 4 4 5
9+
// 5 0 0 0 0 0 1 1 2 2 3 4
10+
// ===========================
11+
// 1 1 2 2 3 4 5 6 7 8 10
1012
Scanner sc = new Scanner(System.in);
1113
int N = sc.nextInt();
1214
int K = sc.nextInt();

BOJ/gold/BOJ2294/BOJ2294.iml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="JAVA_MODULE" version="4">
3+
<component name="NewModuleRootManager" inherit-compiler-output="true">
4+
<exclude-output />
5+
<content url="file://$MODULE_DIR$">
6+
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
7+
</content>
8+
<orderEntry type="inheritedJdk" />
9+
<orderEntry type="sourceFolder" forTests="false" />
10+
</component>
11+
</module>

BOJ/gold/BOJ2294/src/Main.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
public class Main {
2+
public static void main(String[] args) {
3+
System.out.println("Hello world!");
4+
}
5+
}

0 commit comments

Comments
 (0)