結果
問題 | No.316 もっと刺激的なFizzBuzzをください |
ユーザー | zmirez |
提出日時 | 2018-08-25 17:07:58 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,361 bytes |
コンパイル時間 | 987 ms |
コンパイル使用メモリ | 104,064 KB |
実行使用メモリ | 18,048 KB |
最終ジャッジ日時 | 2024-06-26 07:19:46 |
合計ジャッジ時間 | 3,405 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 25 ms
17,664 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 25 ms
17,664 KB |
testcase_06 | AC | 25 ms
17,664 KB |
testcase_07 | AC | 25 ms
17,664 KB |
testcase_08 | AC | 25 ms
17,664 KB |
testcase_09 | AC | 24 ms
17,664 KB |
testcase_10 | AC | 25 ms
17,792 KB |
testcase_11 | AC | 25 ms
17,664 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 25 ms
17,920 KB |
testcase_28 | AC | 25 ms
17,792 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 25 ms
18,048 KB |
testcase_32 | WA | - |
testcase_33 | AC | 26 ms
17,920 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; class Program{ static void Main(string[]args){ long N=int.Parse(Console.ReadLine()); string[]t=Console.ReadLine().Split(' '); long[]a=new long[t.Length]; long count=0; long div=0; for(int i=0;i<t.Length;i++){ a[i]=int.Parse(t[i]); } if(a[2]%a[0]==0 && a[1]%a[0]==0 ){ count=N/a[0]; }else if(a[2]%a[1]==0 || a[2]%a[0]==0){ div=N/(lcm(a[0],a[1])); count=N/a[1]+N/a[0]-div; }else if(a[1]%a[0]==0){ div=N/(lcm(a[0],a[2])); count=N/a[2]+N/a[0]-div; }else{ div =N/lcm(a[0],a[1])+N/lcm(a[0],a[2])+N/lcm(a[1],a[2]); Console.WriteLine((a[0]*a[1]*a[2])); count=N/a[0]+N/a[1]+N/a[2]-div+N/(lcm(a[0],lcm(a[1],a[2]))); //count=N/a[0]+N/a[1]+N/a[2]-div+N/(a[0]*a[1]*a[2]); } Console.WriteLine(count); } //最大公倍数を求める static long lcm(long n,long m){ //n<m return m*n/gcd(n,m); } //最大公約数 static long gcd(long n,long m){ //n<m long r=0; while(true){ r=m%n; if(r==0){ //Console.WriteLine(n); return n; } m=n; n=r; } } }