結果
問題 | No.744 循環小数N桁目 Easy |
ユーザー | papinianus |
提出日時 | 2021-06-19 14:57:19 |
言語 | PHP (8.3.4) |
結果 |
AC
|
実行時間 | 40 ms / 2,000 ms |
コード長 | 582 bytes |
コンパイル時間 | 5,507 ms |
コンパイル使用メモリ | 32,144 KB |
実行使用メモリ | 32,300 KB |
最終ジャッジ日時 | 2024-06-22 22:03:15 |
合計ジャッジ時間 | 4,641 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
31,952 KB |
testcase_01 | AC | 40 ms
32,144 KB |
testcase_02 | AC | 39 ms
32,276 KB |
testcase_03 | AC | 39 ms
32,148 KB |
testcase_04 | AC | 39 ms
32,148 KB |
testcase_05 | AC | 39 ms
32,272 KB |
testcase_06 | AC | 39 ms
32,144 KB |
testcase_07 | AC | 39 ms
32,272 KB |
testcase_08 | AC | 39 ms
32,148 KB |
testcase_09 | AC | 39 ms
32,300 KB |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php declare(strict_types=1); $phrase = '428571'; $pos = UtilIO::getInt() % 6; UtilIO::echo($phrase[$pos]); class UtilIO { protected static string $n = PHP_EOL; protected function __construct() { } public static function getString():string { return trim(fgets(STDIN)); } public static function getInt():int { return intval(trim(fgets(STDIN))); } public static function echo(string $str):void { echo static::toLine($str); } public static function toLine(string $str):string { return trim($str).static::$n; } }