Skip to content

Commit a5bde94

Browse files
Merge pull request #43 from KoyanagiHitoshi/dev
Dev
2 parents 29d6954 + 9b39d5a commit a5bde94

File tree

157 files changed

+594
-557
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

157 files changed

+594
-557
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions

code/answer_2-2-57.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
N, K, A = map(int, input().split())
2-
print(((A+K-2) % N)+1)
1+
R = int(input())
2+
print(100-(R % 100))

code/answer_2-2-58.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
A, B, C = map(int, input().split())
2-
print((A*B*C) % (10**9+7))
1+
N, K, A = map(int, input().split())
2+
print(((A+K-2) % N)+1)

code/answer_2-2-59.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
N = int(input())
2-
print(N % 998244353)
1+
A, B, C = map(int, input().split())
2+
print((A*B*C) % (10**9+7))

code/answer_2-2-60.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
N = int(input())
2+
print(N % 998244353)

code/answer_4-1-100.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
N = input()
2-
if "7" in N:
3-
print("Yes")
1+
X = input()
2+
if X in "753":
3+
print("YES")
44
else:
5-
print("No")
5+
print("NO")

code/answer_4-1-101.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
N = input()
2-
if "9" in N:
2+
if "7" in N:
33
print("Yes")
44
else:
55
print("No")

code/answer_4-1-102.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
N = input()
2-
if N in "369":
3-
print("YES")
2+
if "9" in N:
3+
print("Yes")
44
else:
5-
print("NO")
5+
print("No")

code/answer_4-1-103.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
a = input()
2-
if a in "abcdefghijklmnopqrstuvwxyz":
3-
print("a")
1+
N = input()
2+
if N in "369":
3+
print("YES")
44
else:
5-
print("A")
5+
print("NO")

code/answer_4-1-104.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
a = input()
2-
if a in "ABCDEFGHIJKLMNOPQRSTUVWXYZ":
3-
print("A")
4-
else:
2+
if a in "abcdefghijklmnopqrstuvwxyz":
53
print("a")
4+
else:
5+
print("A")

0 commit comments

Comments
 (0)