結果
| 問題 | No.311 z in FizzBuzzString |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-12-04 23:53:30 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 639 bytes |
| 記録 | |
| コンパイル時間 | 3,255 ms |
| コンパイル使用メモリ | 74,940 KB |
| 実行使用メモリ | 61,536 KB |
| 最終ジャッジ日時 | 2024-09-24 21:17:51 |
| 合計ジャッジ時間 | 7,306 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 7 TLE * 1 -- * 3 |
ソースコード
import java.util.*;
public class FizzBuzzString{
static int fi = 4;
static int tf = 2;
public static void main(String... args){
Scanner scan = new Scanner(System.in);
long n = scan.nextLong();
long res = 0;
MyThread th = new MyThread(n);
for(long i = 1; i <= n; i++){
if(i%15==0){
res+=fi;
continue;
}else{
continue;
}
}
th.start();
System.out.println(res+th.res);
}
}
class MyThread extends Thread{
long n;
int fi = 2;
int res = 0;
public MyThread(long n){
this.n = n;
}
@Override
public void run(){
for(long i = 1; i<= n; i++){
if(i%3==0 || i%5==0){
res+=fi;
}
}
}
}