結果
| 問題 |
No.1499 羊が、何匹だっけ
|
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-08-25 17:53:14 |
| 言語 | Java (openjdk 23) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 265 bytes |
| コンパイル時間 | 2,342 ms |
| コンパイル使用メモリ | 77,792 KB |
| 実行使用メモリ | 46,796 KB |
| 最終ジャッジ日時 | 2025-08-25 17:53:20 |
| 合計ジャッジ時間 | 5,182 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 1 |
| other | RE * 10 |
ソースコード
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int x = scan.nextInt();
for(int i = 0 ; i < x ; i++){
System.out.println("Hitsuji ga " + scan.nextInt() + " hiki");
}
}
}
Maeda