aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test.rs25
1 files changed, 25 insertions, 0 deletions
diff --git a/test.rs b/test.rs
new file mode 100644
index 0000000..8e2c72a
--- /dev/null
+++ b/test.rs
@@ -0,0 +1,25 @@
+fn gcd(a : i32, b : i32) -> i32 {
+ if b > 0 {
+ return gcd(b, a % b);
+ } else {
+ return a;
+ }
+}
+
+fn main() {
+ println!("Hello World");
+
+ const N: i32 = 1000;
+ let mut A: [i32; N as usize] = [0; N as usize];
+ for i in 0..N {
+ A[i as usize] = i;
+ }
+
+ let mut ans = 0;
+ for i in &A {
+ for j in &A {
+ ans += gcd(*i, *j);
+ }
+ }
+ println!("{}", ans);
+}