結果
| 問題 | No.8017 エスパー |
| ユーザー |
mits58
|
| 提出日時 | 2016-07-21 20:44:30 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 233 bytes |
| 記録 | |
| コンパイル時間 | 2,401 ms |
| コンパイル使用メモリ | 81,672 KB |
| 実行使用メモリ | 47,640 KB |
| 最終ジャッジ日時 | 2026-05-06 09:46:53 |
| 合計ジャッジ時間 | 3,932 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 20 |
ソースコード
import java.util.Scanner;
public class Main{
public static void main(String[] args){
Scanner sc=new Scanner(System.in);
while(sc.hasNext()){
long s=sc.nextLong();
long k=sc.nextLong();
System.out.println(s*k);
}
}
}
mits58